This exercise relied on the twitter API, which is no longer available. However a new version of the academic API appears to have recently been made available again. Unsure how this will develop. We will use twitter data collected in 2020 for this exercise.
In this tutorial, you will learn how to:
The hands-on exercise for this week uses dictionary-based methods for filtering and scoring words. Dictionary-based methods use pre-generated lexicons, which are no more than list of words with associated scores or variables measuring the valence of a particular word. In this sense, the exercise is not unlike our analysis of Edinburgh Book Festival event descriptions. Here, we were filtering descriptions based on the presence or absence of a word related to women or gender. We can understand this approach as a particularly simple type of “dictionary-based” method. Here, our “dictionary” or “lexicon” contained just a few words related to gender.
Before proceeding, we’ll load the remaining packages we will need for this tutorial.
library(kableExtra)
library(tidyverse) # loads dplyr, ggplot2, and others
library(readr) # more informative and easy way to import data
library(stringr) # to handle text elements
library(tidytext) # includes set of functions useful for manipulating text
library(quanteda) # includes functions to implement Lexicoder
library(textdata)
library(academictwitteR) # for fetching Twitter data
First off: always check that you have the right working directory
getwd()
## [1] "/Users/poirot/Documents/GitHub/CTA-ED-exercise2"
In this exercise we’ll be using another new dataset. The data were collected from the Twitter accounts of the top eight newspapers in the UK by circulation. You can see the names of the newspapers in the code below:
# This is a code chunk to show the code that collected the data using the twitter API, back in 2020.
# You don't need to run this, and this chunk of code will be ignored when you knit to html, thanks to the 'eval=FALSE' command in the chunk option.
newspapers = c("TheSun", "DailyMailUK", "MetroUK", "DailyMirror",
"EveningStandard", "thetimes", "Telegraph", "guardian")
tweets <-
get_all_tweets(
users = newspapers,
start_tweets = "2020-01-01T00:00:00Z",
end_tweets = "2020-05-01T00:00:00Z",
data_path = "data/sentanalysis/",
n = Inf,
)
tweets <-
bind_tweets(data_path = "data/sentanalysis/", output_format = "tidy")
saveRDS(tweets, "data/sentanalysis/newstweets.rds")

You can download the tweets data directly from the source in the following way: the data was collected by Chris Barrie and is stored on his Github page.
tweets <- readRDS(gzcon(url("https://github.com/cjbarrie/CTA-ED/blob/main/data/sentanalysis/newstweets.rds?raw=true")))
Let’s have a look at the data:
head(tweets)
## # A tibble: 6 × 31
## tweet_id user_username text lang author_id source possibly_sensitive
## <chr> <chr> <chr> <chr> <chr> <chr> <lgl>
## 1 121233440226652… DailyMirror "Sec… en 16887175 Tweet… FALSE
## 2 121233416945767… DailyMirror "RT … en 16887175 Tweet… FALSE
## 3 121233319587999… thetimes "A c… en 6107422 Echob… FALSE
## 4 121233319486498… TheSun "Way… en 34655603 Echob… FALSE
## 5 121233292050719… DailyMailUK "Stu… en 111556423 Socia… FALSE
## 6 121233264057087… TheSun "Dad… en 34655603 Twitt… FALSE
## # ℹ 24 more variables: conversation_id <chr>, created_at <chr>, user_url <chr>,
## # user_location <chr>, user_protected <lgl>, user_verified <lgl>,
## # user_name <chr>, user_profile_image_url <chr>, user_description <chr>,
## # user_created_at <chr>, user_pinned_tweet_id <chr>, retweet_count <int>,
## # like_count <int>, quote_count <int>, user_tweet_count <int>,
## # user_list_count <int>, user_followers_count <int>,
## # user_following_count <int>, sourcetweet_type <chr>, sourcetweet_id <chr>, …
colnames(tweets)
## [1] "tweet_id" "user_username" "text"
## [4] "lang" "author_id" "source"
## [7] "possibly_sensitive" "conversation_id" "created_at"
## [10] "user_url" "user_location" "user_protected"
## [13] "user_verified" "user_name" "user_profile_image_url"
## [16] "user_description" "user_created_at" "user_pinned_tweet_id"
## [19] "retweet_count" "like_count" "quote_count"
## [22] "user_tweet_count" "user_list_count" "user_followers_count"
## [25] "user_following_count" "sourcetweet_type" "sourcetweet_id"
## [28] "sourcetweet_text" "sourcetweet_lang" "sourcetweet_author_id"
## [31] "in_reply_to_user_id"
Each row here is a tweets produced by one of the news outlets detailed above over a five month period, January–May 2020. Note also that each tweets has a particular date. We can therefore use these to look at any over time changes.
We won’t need all of these variables so let’s just keep those that are of interest to us:
tweets <- tweets %>%
select(user_username, text, created_at, user_name,
retweet_count, like_count, quote_count) %>%
rename(username = user_username,
newspaper = user_name,
tweet = text)
| username | tweet | created_at | newspaper | retweet_count | like_count | quote_count |
|---|---|---|---|---|---|---|
| EveningStandard | We can’t complain: Two men spend coronavirus lockdown in London pub with ‘fresh beer on tap’ 🍺 https://t.co/rG65nGWv6q | 2020-04-30T23:43:24.000Z | Evening Standard | 3 | 4 | 0 |
| EveningStandard | Best home spa treatments: face, body, nail and hair products for home https://t.co/nDZ65BbbVs | 2020-04-30T23:57:09.000Z | Evening Standard | 0 | 2 | 0 |
| guardian | Coronavirus live news: Trump claims to have evidence virus started in Wuhan lab as UK is ‘past the peak’ https://t.co/LZv4yx2kn2 | 2020-04-30T23:57:59.000Z | The Guardian | 19 | 40 | 8 |
| guardian | Rugby league gets £16m emergency loan from government https://t.co/kZ9PP4aWjO | 2020-04-30T23:57:59.000Z | The Guardian | 9 | 12 | 0 |
| guardian | Coronavirus latest: at a glance https://t.co/OrWrEdOwoU | 2020-04-30T23:58:01.000Z | The Guardian | 8 | 11 | 3 |
We manipulate the data into tidy format again, unnesting each token (here: words) from the tweet text.
tidy_tweets <- tweets %>%
mutate(desc = tolower(tweet)) %>%
unnest_tokens(word, desc) %>%
filter(str_detect(word, "[a-z]"))
We’ll then tidy this further, as in the previous example, by removing stop words:
tidy_tweets <- tidy_tweets %>%
filter(!word %in% stop_words$word)
Several sentiment dictionaries come bundled with the tidytext package. These are:
AFINN from Finn
Årup Nielsen,bing from Bing Liu
and collaborators, andnrc from Saif
Mohammad and Peter TurneyWe can have a look at some of these to see how the relevant dictionaries are stored.
get_sentiments("afinn")
## # A tibble: 2,477 × 2
## word value
## <chr> <dbl>
## 1 abandon -2
## 2 abandoned -2
## 3 abandons -2
## 4 abducted -2
## 5 abduction -2
## 6 abductions -2
## 7 abhor -3
## 8 abhorred -3
## 9 abhorrent -3
## 10 abhors -3
## # ℹ 2,467 more rows
get_sentiments("bing")
## # A tibble: 6,786 × 2
## word sentiment
## <chr> <chr>
## 1 2-faces negative
## 2 abnormal negative
## 3 abolish negative
## 4 abominable negative
## 5 abominably negative
## 6 abominate negative
## 7 abomination negative
## 8 abort negative
## 9 aborted negative
## 10 aborts negative
## # ℹ 6,776 more rows
get_sentiments("nrc")
## # A tibble: 13,872 × 2
## word sentiment
## <chr> <chr>
## 1 abacus trust
## 2 abandon fear
## 3 abandon negative
## 4 abandon sadness
## 5 abandoned anger
## 6 abandoned fear
## 7 abandoned negative
## 8 abandoned sadness
## 9 abandonment anger
## 10 abandonment fear
## # ℹ 13,862 more rows
What do we see here. First, the AFINN lexicon gives
words a score from -5 to +5, where more negative scores indicate more
negative sentiment and more positive scores indicate more positive
sentiment. The nrc lexicon opts for a binary
classification: positive, negative, anger, anticipation, disgust, fear,
joy, sadness, surprise, and trust, with each word given a score of 1/0
for each of these sentiments. In other words, for the nrc
lexicon, words appear multiple times if they enclose more than one such
emotion (see, e.g., “abandon” above). The bing lexicon is
most minimal, classifying words simply into binary “positive” or
“negative” categories.
Let’s see how we might filter the texts by selecting a dictionary, or
subset of a dictionary, and using inner_join() to then
filter out tweet data. We might, for example, be interested in fear
words. Maybe, we might hypothesize, there is a uptick of fear toward the
beginning of the coronavirus outbreak. First, let’s have a look at the
words in our tweet data that the nrc lexicon codes as
fear-related words.
nrc_fear <- get_sentiments("nrc") %>%
filter(sentiment == "fear")
tidy_tweets %>%
inner_join(nrc_fear) %>%
count(word, sort = TRUE)
## Joining with `by = join_by(word)`
## # A tibble: 1,173 × 2
## word n
## <chr> <int>
## 1 mum 4509
## 2 death 4073
## 3 police 3275
## 4 hospital 2240
## 5 government 2179
## 6 pandemic 1877
## 7 fight 1309
## 8 die 1199
## 9 attack 1099
## 10 murder 1064
## # ℹ 1,163 more rows
We have a total of 1,174 words with some fear valence in our tweet
data according to the nrc classification. Several seem
reasonable (e.g., “death,” “pandemic”); others seems less so (e.g.,
“mum,” “fight”).
Do we see any time trends? First let’s make sure the data are properly arranged in ascending order by date. We’ll then add column, which we’ll call “order,” the use of which will become clear when we do the sentiment analysis.
#gen data variable, order and format date
tidy_tweets$date <- as.Date(tidy_tweets$created_at)
tidy_tweets <- tidy_tweets %>%
arrange(date)
tidy_tweets$order <- 1:nrow(tidy_tweets)
Remember that the structure of our tweet data is in a one token (word) per document (tweet) format. In order to look at sentiment trends over time, we’ll need to decide over how many words to estimate the sentiment.
In the below, we first add in our sentiment dictionary with
inner_join(). We then use the count()
function, specifying that we want to count over dates, and that words
should be indexed in order (i.e., by row number) over every 1000 rows
(i.e., every 1000 words).
This means that if one date has many tweets totalling >1000 words, then we will have multiple observations for that given date; if there are only one or two tweets then we might have just one row and associated sentiment score for that date.
We then calculate the sentiment scores for each of our sentiment
types (positive, negative, anger, anticipation, disgust, fear, joy,
sadness, surprise, and trust) and use the spread() function
to convert these into separate columns (rather than rows). Finally we
calculate a net sentiment score by subtracting the score for negative
sentiment from positive sentiment.
#get tweet sentiment by date
tweets_nrc_sentiment <- tidy_tweets %>%
inner_join(get_sentiments("nrc")) %>%
count(date, index = order %/% 1000, sentiment) %>%
spread(sentiment, n, fill = 0) %>%
mutate(sentiment = positive - negative)
## Joining with `by = join_by(word)`
## Warning in inner_join(., get_sentiments("nrc")): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 2 of `x` matches multiple rows in `y`.
## ℹ Row 7711 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
## "many-to-many"` to silence this warning.
tweets_nrc_sentiment %>%
ggplot(aes(date, sentiment)) +
geom_point(alpha=0.5) +
geom_smooth(method= loess, alpha=0.25)
## `geom_smooth()` using formula = 'y ~ x'
How do our different sentiment dictionaries look when compared to each other? We can then plot the sentiment scores over time for each of our sentiment dictionaries like so:
tidy_tweets %>%
inner_join(get_sentiments("bing")) %>%
count(date, index = order %/% 1000, sentiment) %>%
spread(sentiment, n, fill = 0) %>%
mutate(sentiment = positive - negative) %>%
ggplot(aes(date, sentiment)) +
geom_point(alpha=0.5) +
geom_smooth(method= loess, alpha=0.25) +
ylab("bing sentiment")
## Joining with `by = join_by(word)`
## Warning in inner_join(., get_sentiments("bing")): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 54114 of `x` matches multiple rows in `y`.
## ℹ Row 3848 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
## "many-to-many"` to silence this warning.
## `geom_smooth()` using formula = 'y ~ x'
tidy_tweets %>%
inner_join(get_sentiments("nrc")) %>%
count(date, index = order %/% 1000, sentiment) %>%
spread(sentiment, n, fill = 0) %>%
mutate(sentiment = positive - negative) %>%
ggplot(aes(date, sentiment)) +
geom_point(alpha=0.5) +
geom_smooth(method= loess, alpha=0.25) +
ylab("nrc sentiment")
## Joining with `by = join_by(word)`
## Warning in inner_join(., get_sentiments("nrc")): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 2 of `x` matches multiple rows in `y`.
## ℹ Row 7711 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
## "many-to-many"` to silence this warning.
## `geom_smooth()` using formula = 'y ~ x'
tidy_tweets %>%
inner_join(get_sentiments("afinn")) %>%
group_by(date, index = order %/% 1000) %>%
summarise(sentiment = sum(value)) %>%
ggplot(aes(date, sentiment)) +
geom_point(alpha=0.5) +
geom_smooth(method= loess, alpha=0.25) +
ylab("afinn sentiment")
## Joining with `by = join_by(word)`
## `summarise()` has grouped output by 'date'. You can override using the
## `.groups` argument.
## `geom_smooth()` using formula = 'y ~ x'
We see that they do look pretty similar… and interestingly it seems that overall sentiment positivity increases as the pandemic breaks.
Of course, list- or dictionary-based methods need not only focus on sentiment, even if this is one of their most common uses. In essence, what you’ll have seen from the above is that sentiment analysis techniques rely on a given lexicon and score words appropriately. And there is nothing stopping us from making our own dictionaries, whether they measure sentiment or not. In the data above, we might be interested, for example, in the prevalence of mortality-related words in the news. As such, we might choose to make our own dictionary of terms. What would this look like?
A very minimal example would choose, for example, words like “death” and its synonyms and score these all as 1. We would then combine these into a dictionary, which we’ve called “mordict” here.
word <- c('death', 'illness', 'hospital', 'life', 'health',
'fatality', 'morbidity', 'deadly', 'dead', 'victim')
value <- c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
mordict <- data.frame(word, value)
mordict
## word value
## 1 death 1
## 2 illness 1
## 3 hospital 1
## 4 life 1
## 5 health 1
## 6 fatality 1
## 7 morbidity 1
## 8 deadly 1
## 9 dead 1
## 10 victim 1
We could then use the same technique as above to bind these with our data and look at the incidence of such words over time. Combining the sequence of scripts from above we would do the following:
tidy_tweets %>%
inner_join(mordict) %>%
group_by(date, index = order %/% 1000) %>%
summarise(morwords = sum(value)) %>%
ggplot(aes(date, morwords)) +
geom_bar(stat= "identity") +
ylab("mortality words")
## Joining with `by = join_by(word)`
## `summarise()` has grouped output by 'date'. You can override using the
## `.groups` argument.
The above simply counts the number of mortality words over time. This might be misleading if there are, for example, more or longer tweets at certain points in time; i.e., if the length or quantity of text is not time-constant.
Why would this matter? Well, in the above it could just be that we have more mortality words later on because there are just more tweets earlier on. By just counting words, we are not taking into account the denominator.
An alternative, and preferable, method here would simply take a character string of the relevant words. We would then sum the total number of words across all tweets over time. Then we would filter our tweet words by whether or not they are a mortality word or not, according to the dictionary of words we have constructed. We would then do the same again with these words, summing the number of times they appear for each date.
After this, we join with our data frame of total words for each date.
Note that here we are using full_join() as we want to
include dates that appear in the “totals” data frame that do not appear
when we filter for mortality words; i.e., days when mortality words are
equal to 0. We then go about plotting as before.
mordict <- c('death', 'illness', 'hospital', 'life', 'health',
'fatality', 'morbidity', 'deadly', 'dead', 'victim')
#get total tweets per day (no missing dates so no date completion required)
totals <- tidy_tweets %>%
mutate(obs=1) %>%
group_by(date) %>%
summarise(sum_words = sum(obs))
#plot
tidy_tweets %>%
mutate(obs=1) %>%
filter(grepl(paste0(mordict, collapse = "|"),word, ignore.case = T)) %>%
group_by(date) %>%
summarise(sum_mwords = sum(obs)) %>%
full_join(totals, word, by="date") %>%
mutate(sum_mwords= ifelse(is.na(sum_mwords), 0, sum_mwords),
pctmwords = sum_mwords/sum_words) %>%
ggplot(aes(date, pctmwords)) +
geom_point(alpha=0.5) +
geom_smooth(method= loess, alpha=0.25) +
xlab("Date") + ylab("% mortality words")
## `geom_smooth()` using formula = 'y ~ x'
The above approaches use general dictionary-based techniques that were not designed for domain-specific text such as news text. The Lexicoder Sentiment Dictionary, by @young_affective_2012 was designed specifically for examining the affective content of news text. In what follows, we will see how to implement an analysis using this dictionary.
We will conduct the analysis using the quanteda package.
You will see that we can tokenize text in a similar way using functions
included in the quanteda package.
With the quanteda package we first need to create a
“corpus” object, by declaring our tweets a corpus object. Here, we make
sure our date column is correctly stored and then create the corpus
object with the corpus() function. Note that we are
specifying the text_field as “tweet” as this is where our
text data of interest is, and we are including information on the date
that tweet was published. This information is specified with the
docvars argument. You’ll see then that the corpus consists
of the text and so-called “docvars,” which are just the variables
(columns) in the original dataset. Here, we have only included the date
column.
tweets$date <- as.Date(tweets$created_at)
tweet_corpus <- corpus(tweets, text_field = "tweet", docvars = "date")
## Warning: docvars argument is not used.
#Warning: docvars argument is not used.
# docvars(tweet_corpus) <- tweets["date"]
We then tokenize our text using the tokens() function
from quanteda, removing punctuation along the way:
toks_news <- tokens(tweet_corpus, remove_punct = TRUE)
We then take the data_dictionary_LSD2015 that comes
bundled with quanteda and and we select only the positive
and negative categories, excluding words deemed “neutral.” After this,
we are ready to “look up” in this dictionary how the tokens in our
corpus are scored with the tokens_lookup() function.
# select only the "negative" and "positive" categories
# print(names(data_dictionary_LSD2015))
data_dictionary_LSD2015_pos_neg <- data_dictionary_LSD2015[1:2]
# print(data_dictionary_LSD2015_pos_neg)
# class(data_dictionary_LSD2015_pos_neg)
toks_news_sample <- toks_news[1:10000]
toks_news_lsd_sample <- tokens_lookup(toks_news_sample, dictionary = data_dictionary_LSD2015_pos_neg)
# excute too slowly
toks_news_lsd <- tokens_lookup(toks_news, dictionary = data_dictionary_LSD2015_pos_neg)
This creates a long list of all the texts (tweets) annotated with a
series of ‘positive’ or ‘negative’ annotations depending on the valence
of the words in that text. The creators of quanteda then
recommend we generate a document feature matric from this. Grouping by
date, we then get a dfm object, which is a quite convoluted list object
that we can plot using base graphics functions for plotting
matrices.
# create a document document-feature matrix and group it by date
dfmat_news_lsd <- dfm(toks_news_lsd_sample) %>%
dfm_group(groups = date)
# plot positive and negative valence over time
matplot(dfmat_news_lsd$date, dfmat_news_lsd, type = "l", lty = 1, col = 1:2,
ylab = "Frequency", xlab = "")
grid()
legend("topleft", col = 1:2, legend = colnames(dfmat_news_lsd), lty = 1, bg = "white")
# plot overall sentiment (positive - negative) over time
plot(dfmat_news_lsd$date, dfmat_news_lsd[,"positive"] - dfmat_news_lsd[,"negative"],
type = "l", ylab = "Sentiment", xlab = "")
grid()
abline(h = 0, lty = 2)
Alternatively, we can recreate this in tidy format as follows:
# negative <- dfmat_news_lsd@x[1:121]
# positive <- dfmat_news_lsd@x[122:242]
negative <- as.numeric(dfmat_news_lsd[, "negative"])
positive <- as.numeric(dfmat_news_lsd[, "positive"])
date <- dfmat_news_lsd@Dimnames$docs
tidy_sent <- as.data.frame(cbind(negative, positive, date))
tidy_sent$negative <- as.numeric(tidy_sent$negative)
tidy_sent$positive <- as.numeric(tidy_sent$positive)
tidy_sent$sentiment <- tidy_sent$positive - tidy_sent$negative
tidy_sent$date <- as.Date(tidy_sent$date)
And plot accordingly:
tidy_sent %>%
ggplot() +
geom_line(aes(date, sentiment))
# go back to token element and inspect docvars
docvars(toks_news) # ok all docvars are there
## username created_at newspaper retweet_count
## 1 DailyMirror 2020-01-01T11:27:00.000Z The Mirror 1
## 2 DailyMirror 2020-01-01T11:26:04.000Z The Mirror 5
## 3 thetimes 2020-01-01T11:22:12.000Z The Times 4
## 4 TheSun 2020-01-01T11:22:12.000Z The Sun 1
## 5 DailyMailUK 2020-01-01T11:21:06.000Z Daily Mail U.K. 17
## 6 TheSun 2020-01-01T11:20:00.000Z The Sun 36
## 7 guardian 2020-01-01T11:18:15.000Z The Guardian 7
## 8 Telegraph 2020-01-01T11:15:24.000Z The Telegraph 2
## 9 TheSun 2020-01-01T11:12:12.000Z The Sun 2
## 10 EveningStandard 2020-01-01T11:10:12.000Z Evening Standard 1
## 11 DailyMailUK 2020-01-01T11:10:03.000Z Daily Mail U.K. 8
## 12 TheSun 2020-01-01T11:10:00.000Z The Sun 10
## 13 Telegraph 2020-01-01T11:09:36.000Z The Telegraph 2860
## 14 DailyMirror 2020-01-01T11:09:33.000Z The Mirror 6
## 15 DailyMirror 2020-01-01T11:07:23.000Z The Mirror 1
## 16 guardian 2020-01-01T11:06:01.000Z The Guardian 13
## 17 DailyMirror 2020-01-01T11:05:36.000Z The Mirror 3
## 18 TheSun 2020-01-01T11:03:02.000Z The Sun 4
## 19 Telegraph 2020-01-01T11:01:08.000Z The Telegraph 5
## 20 MetroUK 2020-01-01T11:00:13.000Z Metro 4
## 21 TheSun 2020-01-01T11:00:00.000Z The Sun 17
## 22 DailyMailUK 2020-01-01T10:59:03.000Z Daily Mail U.K. 2
## 23 DailyMirror 2020-01-01T10:58:11.000Z The Mirror 9
## 24 thetimes 2020-01-01T10:56:15.000Z The Times 2
## 25 guardian 2020-01-01T10:55:13.000Z The Guardian 146
## 26 DailyMirror 2020-01-01T10:54:11.000Z The Mirror 2
## 27 TheSun 2020-01-01T10:52:19.000Z The Sun 6
## 28 TheSun 2020-01-01T10:52:17.000Z The Sun 3
## 29 DailyMailUK 2020-01-01T10:51:05.000Z Daily Mail U.K. 9
## 30 TheSun 2020-01-01T10:50:00.000Z The Sun 21
## 31 guardian 2020-01-01T10:43:49.000Z The Guardian 9
## 32 guardian 2020-01-01T10:43:48.000Z The Guardian 5
## 33 TheSun 2020-01-01T10:42:25.000Z The Sun 1
## 34 DailyMirror 2020-01-01T10:42:08.000Z The Mirror 2
## 35 DailyMailUK 2020-01-01T10:40:19.000Z Daily Mail U.K. 14
## 36 DailyMailUK 2020-01-01T10:40:06.000Z Daily Mail U.K. 4
## 37 TheSun 2020-01-01T10:40:00.000Z The Sun 33
## 38 DailyMirror 2020-01-01T10:37:51.000Z The Mirror 7
## 39 DailyMirror 2020-01-01T10:35:55.000Z The Mirror 4
## 40 DailyMirror 2020-01-01T10:34:21.000Z The Mirror 3
## 41 TheSun 2020-01-01T10:32:16.000Z The Sun 1
## 42 DailyMirror 2020-01-01T10:32:00.000Z The Mirror 5
## 43 DailyMailUK 2020-01-01T10:31:46.000Z Daily Mail U.K. 43
## 44 Telegraph 2020-01-01T10:30:20.000Z The Telegraph 20
## 45 EveningStandard 2020-01-01T10:30:18.000Z Evening Standard 0
## 46 DailyMailUK 2020-01-01T10:30:10.000Z Daily Mail U.K. 2
## 47 MetroUK 2020-01-01T10:30:09.000Z Metro 5
## 48 TheSun 2020-01-01T10:30:00.000Z The Sun 14
## 49 guardian 2020-01-01T10:29:22.000Z The Guardian 31
## 50 DailyMirror 2020-01-01T10:28:05.000Z The Mirror 2
## 51 DailyMirror 2020-01-01T10:27:00.000Z The Mirror 2
## 52 MetroUK 2020-01-01T10:26:01.000Z Metro 17
## 53 DailyMirror 2020-01-01T10:25:50.000Z The Mirror 1
## 54 DailyMirror 2020-01-01T10:24:23.000Z The Mirror 1
## 55 DailyMirror 2020-01-01T10:23:00.000Z The Mirror 2
## 56 TheSun 2020-01-01T10:22:24.000Z The Sun 3
## 57 thetimes 2020-01-01T10:21:27.000Z The Times 20
## 58 DailyMirror 2020-01-01T10:20:55.000Z The Mirror 1
## 59 Telegraph 2020-01-01T10:20:30.000Z The Telegraph 8
## 60 TheSun 2020-01-01T10:20:00.000Z The Sun 8
## 61 guardian 2020-01-01T10:18:28.000Z The Guardian 21
## 62 DailyMailUK 2020-01-01T10:16:45.000Z Daily Mail U.K. 688
## 63 DailyMirror 2020-01-01T10:16:31.000Z The Mirror 3
## 64 EveningStandard 2020-01-01T10:13:33.000Z Evening Standard 0
## 65 TheSun 2020-01-01T10:12:34.000Z The Sun 5
## 66 DailyMailUK 2020-01-01T10:11:04.000Z Daily Mail U.K. 3
## 67 DailyMirror 2020-01-01T10:10:19.000Z The Mirror 1
## 68 DailyMirror 2020-01-01T10:10:07.000Z The Mirror 1
## 69 TheSun 2020-01-01T10:10:00.000Z The Sun 37
## 70 DailyMirror 2020-01-01T10:09:29.000Z The Mirror 5
## 71 DailyMirror 2020-01-01T10:08:37.000Z The Mirror 1
## 72 DailyMirror 2020-01-01T10:07:00.000Z The Mirror 2
## 73 guardian 2020-01-01T10:05:48.000Z The Guardian 50
## 74 DailyMirror 2020-01-01T10:04:36.000Z The Mirror 12
## 75 TheSun 2020-01-01T10:03:13.000Z The Sun 2
## 76 DailyMailUK 2020-01-01T10:02:11.000Z Daily Mail U.K. 10
## 77 DailyMailUK 2020-01-01T10:01:47.000Z Daily Mail U.K. 19
## 78 Telegraph 2020-01-01T10:01:15.000Z The Telegraph 5
## 79 thetimes 2020-01-01T10:01:08.000Z The Times 2
## 80 DailyMailUK 2020-01-01T10:00:10.000Z Daily Mail U.K. 0
## 81 MetroUK 2020-01-01T10:00:09.000Z Metro 3
## 82 TheSun 2020-01-01T10:00:00.000Z The Sun 12
## 83 DailyMailUK 2020-01-01T09:57:52.000Z Daily Mail U.K. 18
## 84 DailyMirror 2020-01-01T09:56:22.000Z The Mirror 7
## 85 DailyMirror 2020-01-01T09:56:10.000Z The Mirror 2
## 86 EveningStandard 2020-01-01T09:55:11.000Z Evening Standard 0
## 87 DailyMirror 2020-01-01T09:55:10.000Z The Mirror 1
## 88 DailyMirror 2020-01-01T09:55:06.000Z The Mirror 1
## 89 guardian 2020-01-01T09:54:04.000Z The Guardian 17
## 90 TheSun 2020-01-01T09:52:06.000Z The Sun 5
## 91 DailyMailUK 2020-01-01T09:50:05.000Z Daily Mail U.K. 1
## 92 TheSun 2020-01-01T09:50:00.000Z The Sun 25
## 93 DailyMirror 2020-01-01T09:48:15.000Z The Mirror 7
## 94 DailyMirror 2020-01-01T09:45:24.000Z The Mirror 7
## 95 DailyMailUK 2020-01-01T09:42:49.000Z Daily Mail U.K. 11
## 96 guardian 2020-01-01T09:42:49.000Z The Guardian 25
## 97 TheSun 2020-01-01T09:42:49.000Z The Sun 0
## 98 thetimes 2020-01-01T09:40:53.000Z The Times 6
## 99 MetroUK 2020-01-01T09:40:40.000Z Metro 2
## 100 DailyMailUK 2020-01-01T09:40:03.000Z Daily Mail U.K. 3
## 101 TheSun 2020-01-01T09:40:00.000Z The Sun 8
## 102 MetroUK 2020-01-01T09:33:51.000Z Metro 0
## 103 DailyMirror 2020-01-01T09:33:41.000Z The Mirror 4
## 104 DailyMirror 2020-01-01T09:33:15.000Z The Mirror 3
## 105 TheSun 2020-01-01T09:32:13.000Z The Sun 3
## 106 DailyMirror 2020-01-01T09:31:57.000Z The Mirror 1
## 107 Telegraph 2020-01-01T09:31:08.000Z The Telegraph 3
## 108 DailyMailUK 2020-01-01T09:30:35.000Z Daily Mail U.K. 19
## 109 DailyMailUK 2020-01-01T09:30:06.000Z Daily Mail U.K. 8
## 110 TheSun 2020-01-01T09:30:00.000Z The Sun 24
## 111 guardian 2020-01-01T09:28:59.000Z The Guardian 2
## 112 DailyMirror 2020-01-01T09:27:55.000Z The Mirror 2
## 113 EveningStandard 2020-01-01T09:25:09.000Z Evening Standard 1
## 114 DailyMirror 2020-01-01T09:23:00.000Z The Mirror 2
## 115 TheSun 2020-01-01T09:22:56.000Z The Sun 0
## 116 TheSun 2020-01-01T09:21:15.000Z The Sun 5
## 117 DailyMailUK 2020-01-01T09:20:01.000Z Daily Mail U.K. 1
## 118 TheSun 2020-01-01T09:20:00.000Z The Sun 7
## 119 guardian 2020-01-01T09:18:52.000Z The Guardian 8
## 120 Telegraph 2020-01-01T09:15:45.000Z The Telegraph 20
## 121 DailyMailUK 2020-01-01T09:14:15.000Z Daily Mail U.K. 26
## 122 TheSun 2020-01-01T09:12:57.000Z The Sun 4
## 123 TheSun 2020-01-01T09:12:45.000Z The Sun 11
## 124 DailyMailUK 2020-01-01T09:12:02.000Z Daily Mail U.K. 14
## 125 DailyMailUK 2020-01-01T09:10:02.000Z Daily Mail U.K. 17
## 126 TheSun 2020-01-01T09:10:00.000Z The Sun 6
## 127 EveningStandard 2020-01-01T09:07:01.000Z Evening Standard 0
## 128 thetimes 2020-01-01T09:06:04.000Z The Times 7
## 129 guardian 2020-01-01T09:06:03.000Z The Guardian 10
## 130 MetroUK 2020-01-01T09:05:13.000Z Metro 6
## 131 TheSun 2020-01-01T09:03:01.000Z The Sun 3
## 132 DailyMirror 2020-01-01T09:01:10.000Z The Mirror 6
## 133 DailyMirror 2020-01-01T09:01:00.000Z The Mirror 2
## 134 Telegraph 2020-01-01T09:00:35.000Z The Telegraph 9
## 135 TheSun 2020-01-01T09:00:00.000Z The Sun 43
## 136 DailyMailUK 2020-01-01T08:59:06.000Z Daily Mail U.K. 4
## 137 DailyMirror 2020-01-01T08:58:03.000Z The Mirror 5
## 138 DailyMailUK 2020-01-01T08:56:48.000Z Daily Mail U.K. 4
## 139 guardian 2020-01-01T08:55:25.000Z The Guardian 6
## 140 TheSun 2020-01-01T08:52:27.000Z The Sun 4
## 141 DailyMirror 2020-01-01T08:51:11.000Z The Mirror 5
## 142 DailyMailUK 2020-01-01T08:50:05.000Z Daily Mail U.K. 17
## 143 TheSun 2020-01-01T08:50:00.000Z The Sun 48
## 144 EveningStandard 2020-01-01T08:49:29.000Z Evening Standard 0
## 145 Telegraph 2020-01-01T08:45:36.000Z The Telegraph 4
## 146 TheSun 2020-01-01T08:42:39.000Z The Sun 5
## 147 guardian 2020-01-01T08:40:35.000Z The Guardian 6
## 148 DailyMailUK 2020-01-01T08:40:05.000Z Daily Mail U.K. 6
## 149 TheSun 2020-01-01T08:40:00.000Z The Sun 3
## 150 guardian 2020-01-01T08:33:26.000Z The Guardian 20
## 151 EveningStandard 2020-01-01T08:32:27.000Z Evening Standard 0
## 152 TheSun 2020-01-01T08:32:27.000Z The Sun 1
## 153 DailyMirror 2020-01-01T08:32:18.000Z The Mirror 1
## 154 Telegraph 2020-01-01T08:30:33.000Z The Telegraph 7
## 155 DailyMailUK 2020-01-01T08:30:09.000Z Daily Mail U.K. 1
## 156 TheSun 2020-01-01T08:30:00.000Z The Sun 17
## 157 thetimes 2020-01-01T08:27:35.000Z The Times 9
## 158 DailyMailUK 2020-01-01T08:27:02.000Z Daily Mail U.K. 13
## 159 DailyMirror 2020-01-01T08:23:00.000Z The Mirror 2
## 160 TheSun 2020-01-01T08:22:37.000Z The Sun 3
## 161 DailyMailUK 2020-01-01T08:20:05.000Z Daily Mail U.K. 11
## 162 TheSun 2020-01-01T08:20:00.000Z The Sun 41
## 163 DailyMailUK 2020-01-01T08:16:54.000Z Daily Mail U.K. 15
## 164 guardian 2020-01-01T08:16:41.000Z The Guardian 66
## 165 guardian 2020-01-01T08:16:41.000Z The Guardian 74
## 166 Telegraph 2020-01-01T08:15:46.000Z The Telegraph 16
## 167 DailyMirror 2020-01-01T08:14:44.000Z The Mirror 5
## 168 DailyMailUK 2020-01-01T08:13:20.000Z Daily Mail U.K. 5
## 169 TheSun 2020-01-01T08:12:46.000Z The Sun 8
## 170 TheSun 2020-01-01T08:10:00.000Z The Sun 35
## 171 DailyMirror 2020-01-01T08:07:16.000Z The Mirror 5
## 172 thetimes 2020-01-01T08:05:57.000Z The Times 5
## 173 DailyMailUK 2020-01-01T08:04:00.000Z Daily Mail U.K. 0
## 174 TheSun 2020-01-01T08:02:57.000Z The Sun 1
## 175 Telegraph 2020-01-01T08:01:07.000Z The Telegraph 6
## 176 EveningStandard 2020-01-01T08:00:59.000Z Evening Standard 0
## 177 TheSun 2020-01-01T08:00:00.000Z The Sun 12
## 178 Telegraph 2020-01-01T07:56:03.000Z The Telegraph 3
## 179 guardian 2020-01-01T07:53:13.000Z The Guardian 10
## 180 TheSun 2020-01-01T07:52:08.000Z The Sun 3
## 181 Telegraph 2020-01-01T07:51:09.000Z The Telegraph 27
## 182 TheSun 2020-01-01T07:50:00.000Z The Sun 4
## 183 thetimes 2020-01-01T07:43:31.000Z The Times 2
## 184 TheSun 2020-01-01T07:42:28.000Z The Sun 1
## 185 TheSun 2020-01-01T07:42:27.000Z The Sun 4
## 186 Telegraph 2020-01-01T07:40:31.000Z The Telegraph 8
## 187 guardian 2020-01-01T07:40:29.000Z The Guardian 34
## 188 EveningStandard 2020-01-01T07:40:29.000Z Evening Standard 1
## 189 TheSun 2020-01-01T07:40:00.000Z The Sun 46
## 190 DailyMailUK 2020-01-01T07:35:46.000Z Daily Mail U.K. 2
## 191 DailyMirror 2020-01-01T07:33:20.000Z The Mirror 6
## 192 TheSun 2020-01-01T07:32:37.000Z The Sun 3
## 193 Telegraph 2020-01-01T07:30:42.000Z The Telegraph 14
## 194 TheSun 2020-01-01T07:30:00.000Z The Sun 14
## 195 DailyMirror 2020-01-01T07:27:43.000Z The Mirror 32
## 196 guardian 2020-01-01T07:27:37.000Z The Guardian 18
## 197 guardian 2020-01-01T07:27:36.000Z The Guardian 7
## 198 guardian 2020-01-01T07:27:35.000Z The Guardian 8
## 199 DailyMailUK 2020-01-01T07:24:21.000Z Daily Mail U.K. 0
## 200 TheSun 2020-01-01T07:22:48.000Z The Sun 2
## 201 thetimes 2020-01-01T07:20:52.000Z The Times 6
## 202 TheSun 2020-01-01T07:20:00.000Z The Sun 121
## 203 EveningStandard 2020-01-01T07:18:51.000Z Evening Standard 0
## 204 TheSun 2020-01-01T07:12:58.000Z The Sun 5
## 205 TheSun 2020-01-01T07:10:00.000Z The Sun 3
## 206 DailyMirror 2020-01-01T07:04:58.000Z The Mirror 2
## 207 DailyMirror 2020-01-01T07:03:07.000Z The Mirror 4
## 208 guardian 2020-01-01T07:02:09.000Z The Guardian 14
## 209 Telegraph 2020-01-01T07:01:14.000Z The Telegraph 4
## 210 thetimes 2020-01-01T07:01:12.000Z The Times 6
## 211 MetroUK 2020-01-01T07:00:15.000Z Metro 1
## 212 MetroUK 2020-01-01T07:00:09.000Z Metro 0
## 213 TheSun 2020-01-01T07:00:00.000Z The Sun 12
## 214 EveningStandard 2020-01-01T06:47:03.000Z Evening Standard 4
## 215 thetimes 2020-01-01T06:40:13.000Z The Times 8
## 216 TheSun 2020-01-01T06:40:10.000Z The Sun 2
## 217 TheSun 2020-01-01T06:40:00.000Z The Sun 15
## 218 guardian 2020-01-01T06:37:02.000Z The Guardian 9
## 219 guardian 2020-01-01T06:37:01.000Z The Guardian 7
## 220 guardian 2020-01-01T06:35:15.000Z The Guardian 80
## 221 Telegraph 2020-01-01T06:30:22.000Z The Telegraph 15
## 222 MetroUK 2020-01-01T06:30:05.000Z Metro 1
## 223 MetroUK 2020-01-01T06:30:04.000Z Metro 1
## 224 EveningStandard 2020-01-01T06:29:18.000Z Evening Standard 0
## 225 thetimes 2020-01-01T06:20:33.000Z The Times 264
## 226 TheSun 2020-01-01T06:20:30.000Z The Sun 3
## 227 TheSun 2020-01-01T06:20:00.000Z The Sun 9
## 228 EveningStandard 2020-01-01T06:13:35.000Z Evening Standard 0
## 229 DailyMirror 2020-01-01T06:06:07.000Z The Mirror 3
## 230 DailyMirror 2020-01-01T06:04:12.000Z The Mirror 2
## 231 thetimes 2020-01-01T06:00:52.000Z The Times 6
## 232 TheSun 2020-01-01T06:00:51.000Z The Sun 2
## 233 MetroUK 2020-01-01T06:00:04.000Z Metro 2
## 234 TheSun 2020-01-01T06:00:00.000Z The Sun 2
## 235 EveningStandard 2020-01-01T05:56:53.000Z Evening Standard 0
## 236 TheSun 2020-01-01T05:41:08.000Z The Sun 1
## 237 TheSun 2020-01-01T05:40:00.000Z The Sun 19
## 238 Telegraph 2020-01-01T05:36:55.000Z The Telegraph 5
## 239 EveningStandard 2020-01-01T05:34:56.000Z Evening Standard 0
## 240 DailyMailUK 2020-01-01T05:31:11.000Z Daily Mail U.K. 69
## 241 guardian 2020-01-01T05:30:03.000Z The Guardian 42
## 242 DailyMirror 2020-01-01T05:25:16.000Z The Mirror 3
## 243 TheSun 2020-01-01T05:20:10.000Z The Sun 2
## 244 TheSun 2020-01-01T05:20:00.000Z The Sun 18
## 245 DailyMirror 2020-01-01T05:19:18.000Z The Mirror 1
## 246 DailyMirror 2020-01-01T05:10:00.000Z The Mirror 7
## 247 EveningStandard 2020-01-01T05:09:21.000Z Evening Standard 0
## 248 thetimes 2020-01-01T05:00:24.000Z The Times 0
## 249 TheSun 2020-01-01T05:00:22.000Z The Sun 0
## 250 guardian 2020-01-01T05:00:13.000Z The Guardian 16
## 251 TheSun 2020-01-01T05:00:00.000Z The Sun 6
## 252 DailyMirror 2020-01-01T04:58:00.000Z The Mirror 3
## 253 guardian 2020-01-01T04:57:52.000Z The Guardian 242
## 254 EveningStandard 2020-01-01T04:53:42.000Z Evening Standard 0
## 255 TheSun 2020-01-01T04:40:59.000Z The Sun 2
## 256 guardian 2020-01-01T04:40:57.000Z The Guardian 198
## 257 TheSun 2020-01-01T04:40:00.000Z The Sun 13
## 258 DailyMirror 2020-01-01T04:38:15.000Z The Mirror 7
## 259 guardian 2020-01-01T04:35:17.000Z The Guardian 17
## 260 EveningStandard 2020-01-01T04:35:02.000Z Evening Standard 0
## 261 guardian 2020-01-01T04:24:31.000Z The Guardian 34
## 262 TheSun 2020-01-01T04:20:17.000Z The Sun 3
## 263 TheSun 2020-01-01T04:20:00.000Z The Sun 7
## 264 EveningStandard 2020-01-01T04:19:19.000Z Evening Standard 0
## 265 guardian 2020-01-01T04:13:25.000Z The Guardian 32
## 266 EveningStandard 2020-01-01T04:03:33.000Z Evening Standard 0
## 267 TheSun 2020-01-01T04:00:38.000Z The Sun 1
## 268 TheSun 2020-01-01T04:00:00.000Z The Sun 7
## 269 guardian 2020-01-01T03:56:40.000Z The Guardian 19
## 270 EveningStandard 2020-01-01T03:45:53.000Z Evening Standard 1
## 271 TheSun 2020-01-01T03:41:00.000Z The Sun 3
## 272 TheSun 2020-01-01T03:40:00.000Z The Sun 6
## 273 EveningStandard 2020-01-01T03:30:09.000Z Evening Standard 1
## 274 guardian 2020-01-01T03:26:12.000Z The Guardian 23
## 275 TheSun 2020-01-01T03:20:18.000Z The Sun 1
## 276 TheSun 2020-01-01T03:20:00.000Z The Sun 6
## 277 EveningStandard 2020-01-01T03:15:23.000Z Evening Standard 1
## 278 TheSun 2020-01-01T03:00:37.000Z The Sun 0
## 279 TheSun 2020-01-01T03:00:00.000Z The Sun 13
## 280 EveningStandard 2020-01-01T02:59:39.000Z Evening Standard 0
## 281 DailyMirror 2020-01-01T02:58:00.000Z The Mirror 0
## 282 guardian 2020-01-01T02:54:30.000Z The Guardian 1060
## 283 EveningStandard 2020-01-01T02:43:50.000Z Evening Standard 2
## 284 TheSun 2020-01-01T02:40:54.000Z The Sun 0
## 285 TheSun 2020-01-01T02:40:00.000Z The Sun 11
## 286 DailyMirror 2020-01-01T02:37:00.000Z The Mirror 3
## 287 DailyMirror 2020-01-01T02:36:25.000Z The Mirror 3
## 288 DailyMirror 2020-01-01T02:35:51.000Z The Mirror 3
## 289 DailyMirror 2020-01-01T02:35:16.000Z The Mirror 3
## 290 guardian 2020-01-01T02:33:03.000Z The Guardian 2
## 291 EveningStandard 2020-01-01T02:29:04.000Z Evening Standard 1
## 292 guardian 2020-01-01T02:20:16.000Z The Guardian 4
## 293 TheSun 2020-01-01T02:20:15.000Z The Sun 3
## 294 DailyMirror 2020-01-01T02:20:00.000Z The Mirror 6
## 295 TheSun 2020-01-01T02:20:00.000Z The Sun 6
## 296 guardian 2020-01-01T02:14:40.000Z The Guardian 60
## 297 EveningStandard 2020-01-01T02:14:21.000Z Evening Standard 0
## 298 DailyMirror 2020-01-01T02:10:42.000Z The Mirror 3
## 299 guardian 2020-01-01T02:05:29.000Z The Guardian 42
## 300 EveningStandard 2020-01-01T02:00:37.000Z Evening Standard 2
## 301 TheSun 2020-01-01T02:00:35.000Z The Sun 0
## 302 TheSun 2020-01-01T02:00:00.000Z The Sun 36
## 303 guardian 2020-01-01T01:49:46.000Z The Guardian 21
## 304 EveningStandard 2020-01-01T01:45:49.000Z Evening Standard 0
## 305 TheSun 2020-01-01T01:40:55.000Z The Sun 3
## 306 TheSun 2020-01-01T01:40:00.000Z The Sun 9
## 307 DailyMirror 2020-01-01T01:37:51.000Z The Mirror 5
## 308 guardian 2020-01-01T01:36:57.000Z The Guardian 17
## 309 EveningStandard 2020-01-01T01:33:21.000Z Evening Standard 2
## 310 guardian 2020-01-01T01:24:20.000Z The Guardian 33
## 311 TheSun 2020-01-01T01:20:24.000Z The Sun 1
## 312 TheSun 2020-01-01T01:20:00.000Z The Sun 10
## 313 EveningStandard 2020-01-01T01:19:25.000Z Evening Standard 1
## 314 guardian 2020-01-01T01:12:32.000Z The Guardian 13
## 315 EveningStandard 2020-01-01T01:06:38.000Z Evening Standard 0
## 316 DailyMirror 2020-01-01T01:05:00.000Z The Mirror 1
## 317 DailyMirror 2020-01-01T01:02:15.000Z The Mirror 1
## 318 TheSun 2020-01-01T01:00:45.000Z The Sun 4
## 319 TheSun 2020-01-01T01:00:00.000Z The Sun 4
## 320 guardian 2020-01-01T00:59:46.000Z The Guardian 7
## 321 DailyMirror 2020-01-01T00:59:07.000Z The Mirror 33
## 322 EveningStandard 2020-01-01T00:53:51.000Z Evening Standard 5
## 323 DailyMirror 2020-01-01T00:51:27.000Z The Mirror 12
## 324 guardian 2020-01-01T00:50:42.000Z The Guardian 51
## 325 TheSun 2020-01-01T00:47:45.000Z The Sun 2
## 326 guardian 2020-01-01T00:42:48.000Z The Guardian 94
## 327 EveningStandard 2020-01-01T00:40:51.000Z Evening Standard 1
## 328 TheSun 2020-01-01T00:40:50.000Z The Sun 3
## 329 TheSun 2020-01-01T00:40:00.000Z The Sun 179
## 330 DailyMirror 2020-01-01T00:39:00.000Z The Mirror 8
## 331 TheSun 2020-01-01T00:37:53.000Z The Sun 1
## 332 DailyMirror 2020-01-01T00:32:16.000Z The Mirror 7
## 333 EveningStandard 2020-01-01T00:32:00.000Z Evening Standard 0
## 334 guardian 2020-01-01T00:31:34.000Z The Guardian 11
## 335 DailyMirror 2020-01-01T00:31:00.000Z The Mirror 4
## 336 DailyMirror 2020-01-01T00:29:07.000Z The Mirror 2
## 337 guardian 2020-01-01T00:28:42.000Z The Guardian 10
## 338 DailyMirror 2020-01-01T00:26:00.000Z The Mirror 3
## 339 DailyMirror 2020-01-01T00:25:00.000Z The Mirror 6
## 340 DailyMirror 2020-01-01T00:21:06.000Z The Mirror 8
## 341 TheSun 2020-01-01T00:20:52.000Z The Sun 3
## 342 EveningStandard 2020-01-01T00:20:51.000Z Evening Standard 2
## 343 DailyMirror 2020-01-01T00:20:08.000Z The Mirror 10
## 344 TheSun 2020-01-01T00:20:00.000Z The Sun 2
## 345 TheSun 2020-01-01T00:17:54.000Z The Sun 1
## 346 DailyMirror 2020-01-01T00:16:00.000Z The Mirror 2
## 347 DailyMirror 2020-01-01T00:15:37.000Z The Mirror 4
## 348 DailyMirror 2020-01-01T00:15:00.000Z The Mirror 1
## 349 guardian 2020-01-01T00:13:57.000Z The Guardian 1
## 350 EveningStandard 2020-01-01T00:10:52.000Z Evening Standard 0
## 351 guardian 2020-01-01T00:08:45.000Z The Guardian 30
## 352 DailyMirror 2020-01-01T00:08:16.000Z The Mirror 16
## 353 TheSun 2020-01-01T00:07:57.000Z The Sun 0
## 354 DailyMirror 2020-01-01T00:06:28.000Z The Mirror 2
## 355 MetroUK 2020-01-01T00:03:24.000Z Metro 17
## 356 guardian 2020-01-01T00:01:01.000Z The Guardian 20
## 357 TheSun 2020-01-01T00:00:59.000Z The Sun 5
## 358 DailyMirror 2020-01-01T00:00:01.000Z The Mirror 3
## 359 TheSun 2020-01-01T00:00:00.000Z The Sun 2
## 360 TheSun 2020-01-01T20:10:00.000Z The Sun 11
## 361 TheSun 2020-01-01T20:05:17.000Z The Sun 7
## 362 DailyMirror 2020-01-01T20:03:57.000Z The Mirror 2
## 363 TheSun 2020-01-01T20:02:59.000Z The Sun 6
## 364 EveningStandard 2020-01-01T20:02:00.000Z Evening Standard 0
## 365 Telegraph 2020-01-01T20:01:09.000Z The Telegraph 12
## 366 thetimes 2020-01-01T20:01:07.000Z The Times 13
## 367 DailyMailUK 2020-01-01T20:00:10.000Z Daily Mail U.K. 6
## 368 MetroUK 2020-01-01T20:00:05.000Z Metro 0
## 369 DailyMirror 2020-01-01T20:00:00.000Z The Mirror 1
## 370 TheSun 2020-01-01T20:00:00.000Z The Sun 11
## 371 guardian 2020-01-01T19:57:06.000Z The Guardian 19
## 372 DailyMirror 2020-01-01T19:55:00.000Z The Mirror 6
## 373 TheSun 2020-01-01T19:52:10.000Z The Sun 44
## 374 DailyMirror 2020-01-01T19:50:00.000Z The Mirror 3
## 375 TheSun 2020-01-01T19:50:00.000Z The Sun 11
## 376 DailyMirror 2020-01-01T19:48:22.000Z The Mirror 0
## 377 Telegraph 2020-01-01T19:48:01.000Z The Telegraph 5
## 378 Telegraph 2020-01-01T19:47:59.000Z The Telegraph 8
## 379 Telegraph 2020-01-01T19:47:55.000Z The Telegraph 7
## 380 Telegraph 2020-01-01T19:47:38.000Z The Telegraph 3
## 381 guardian 2020-01-01T19:47:20.000Z The Guardian 2
## 382 guardian 2020-01-01T19:47:19.000Z The Guardian 4
## 383 Telegraph 2020-01-01T19:45:21.000Z The Telegraph 7
## 384 EveningStandard 2020-01-01T19:45:19.000Z Evening Standard 0
## 385 TheSun 2020-01-01T19:42:20.000Z The Sun 1
## 386 DailyMailUK 2020-01-01T19:41:05.000Z Daily Mail U.K. 0
## 387 DailyMirror 2020-01-01T19:40:00.000Z The Mirror 3
## 388 TheSun 2020-01-01T19:40:00.000Z The Sun 7
## 389 MetroUK 2020-01-01T19:35:12.000Z Metro 2
## 390 DailyMirror 2020-01-01T19:33:51.000Z The Mirror 2
## 391 DailyMirror 2020-01-01T19:33:00.000Z The Mirror 2
## 392 TheSun 2020-01-01T19:32:30.000Z The Sun 0
## 393 guardian 2020-01-01T19:32:30.000Z The Guardian 2
## 394 DailyMirror 2020-01-01T19:31:00.000Z The Mirror 2
## 395 Telegraph 2020-01-01T19:30:36.000Z The Telegraph 0
## 396 MetroUK 2020-01-01T19:30:13.000Z Metro 1
## 397 TheSun 2020-01-01T19:30:00.000Z The Sun 3
## 398 EveningStandard 2020-01-01T19:29:32.000Z Evening Standard 0
## 399 DailyMirror 2020-01-01T19:29:00.000Z The Mirror 3
## 400 TheSun 2020-01-01T19:25:16.000Z The Sun 4
## 401 TheSun 2020-01-01T19:22:41.000Z The Sun 0
## 402 TheSun 2020-01-01T19:22:40.000Z The Sun 2
## 403 guardian 2020-01-01T19:21:20.000Z The Guardian 15
## 404 guardian 2020-01-01T19:21:19.000Z The Guardian 58
## 405 guardian 2020-01-01T19:21:17.000Z The Guardian 1
## 406 guardian 2020-01-01T19:21:16.000Z The Guardian 17
## 407 DailyMailUK 2020-01-01T19:20:09.000Z Daily Mail U.K. 9
## 408 TheSun 2020-01-01T19:20:00.000Z The Sun 17
## 409 DailyMirror 2020-01-01T19:19:00.000Z The Mirror 1
## 410 guardian 2020-01-01T19:17:46.000Z The Guardian 25
## 411 DailyMirror 2020-01-01T19:16:00.000Z The Mirror 3
## 412 Telegraph 2020-01-01T19:15:49.000Z The Telegraph 5
## 413 DailyMirror 2020-01-01T19:15:00.000Z The Mirror 1
## 414 EveningStandard 2020-01-01T19:13:49.000Z Evening Standard 0
## 415 TheSun 2020-01-01T19:12:54.000Z The Sun 1
## 416 TheSun 2020-01-01T19:12:52.000Z The Sun 1
## 417 DailyMirror 2020-01-01T19:11:00.000Z The Mirror 7
## 418 thetimes 2020-01-01T19:10:54.000Z The Times 16
## 419 TheSun 2020-01-01T19:10:52.000Z The Sun 0
## 420 TheSun 2020-01-01T19:10:00.000Z The Sun 4
## 421 guardian 2020-01-01T19:07:57.000Z The Guardian 73
## 422 TheSun 2020-01-01T19:02:57.000Z The Sun 4
## 423 DailyMirror 2020-01-01T19:02:31.000Z The Mirror 2
## 424 Telegraph 2020-01-01T19:01:05.000Z The Telegraph 3
## 425 EveningStandard 2020-01-01T19:00:59.000Z Evening Standard 0
## 426 MetroUK 2020-01-01T19:00:12.000Z Metro 2
## 427 DailyMailUK 2020-01-01T19:00:04.000Z Daily Mail U.K. 7
## 428 TheSun 2020-01-01T19:00:00.000Z The Sun 16
## 429 guardian 2020-01-01T18:58:23.000Z The Guardian 6
## 430 guardian 2020-01-01T18:58:22.000Z The Guardian 12
## 431 guardian 2020-01-01T18:58:22.000Z The Guardian 4
## 432 guardian 2020-01-01T18:58:21.000Z The Guardian 3
## 433 guardian 2020-01-01T18:58:19.000Z The Guardian 10
## 434 guardian 2020-01-01T18:58:18.000Z The Guardian 1
## 435 DailyMirror 2020-01-01T18:58:00.000Z The Mirror 5
## 436 DailyMirror 2020-01-01T18:53:00.000Z The Mirror 3
## 437 guardian 2020-01-01T18:52:24.000Z The Guardian 8
## 438 TheSun 2020-01-01T18:52:23.000Z The Sun 2
## 439 DailyMirror 2020-01-01T18:52:00.000Z The Mirror 6
## 440 TheSun 2020-01-01T18:50:00.000Z The Sun 7
## 441 EveningStandard 2020-01-01T18:48:27.000Z Evening Standard 0
## 442 guardian 2020-01-01T18:42:34.000Z The Guardian 23
## 443 TheSun 2020-01-01T18:42:33.000Z The Sun 11
## 444 DailyMailUK 2020-01-01T18:42:03.000Z Daily Mail U.K. 9
## 445 Telegraph 2020-01-01T18:40:41.000Z The Telegraph 18
## 446 TheSun 2020-01-01T18:40:00.000Z The Sun 15
## 447 Telegraph 2020-01-01T18:38:16.000Z The Telegraph 7
## 448 TheSun 2020-01-01T18:36:32.000Z The Sun 1
## 449 DailyMirror 2020-01-01T18:35:00.000Z The Mirror 11
## 450 DailyMirror 2020-01-01T18:34:00.000Z The Mirror 6
## 451 DailyMirror 2020-01-01T18:34:00.000Z The Mirror 2
## 452 guardian 2020-01-01T18:32:57.000Z The Guardian 14
## 453 guardian 2020-01-01T18:32:55.000Z The Guardian 12
## 454 guardian 2020-01-01T18:32:54.000Z The Guardian 5
## 455 TheSun 2020-01-01T18:32:44.000Z The Sun 7
## 456 EveningStandard 2020-01-01T18:32:05.000Z Evening Standard 0
## 457 DailyMirror 2020-01-01T18:31:47.000Z The Mirror 3
## 458 DailyMirror 2020-01-01T18:30:51.000Z The Mirror 3
## 459 MetroUK 2020-01-01T18:30:04.000Z Metro 6
## 460 TheSun 2020-01-01T18:30:00.000Z The Sun 1
## 461 DailyMirror 2020-01-01T18:29:00.000Z The Mirror 3
## 462 Telegraph 2020-01-01T18:26:49.000Z The Telegraph 8
## 463 EveningStandard 2020-01-01T18:26:47.000Z Evening Standard 1
## 464 Telegraph 2020-01-01T18:25:05.000Z The Telegraph 9
## 465 DailyMirror 2020-01-01T18:25:00.000Z The Mirror 5
## 466 DailyMirror 2020-01-01T18:24:28.000Z The Mirror 38
## 467 MetroUK 2020-01-01T18:24:12.000Z Metro 161
## 468 guardian 2020-01-01T18:23:51.000Z The Guardian 1694
## 469 DailyMirror 2020-01-01T18:23:19.000Z The Mirror 33
## 470 Telegraph 2020-01-01T18:22:55.000Z The Telegraph 2
## 471 TheSun 2020-01-01T18:22:55.000Z The Sun 2
## 472 Telegraph 2020-01-01T18:22:49.000Z The Telegraph 7
## 473 DailyMailUK 2020-01-01T18:22:03.000Z Daily Mail U.K. 59
## 474 MetroUK 2020-01-01T18:21:40.000Z Metro 1
## 475 TheSun 2020-01-01T18:20:00.000Z The Sun 22
## 476 thetimes 2020-01-01T18:19:03.000Z The Times 2
## 477 DailyMirror 2020-01-01T18:19:00.000Z The Mirror 1
## 478 DailyMirror 2020-01-01T18:17:00.000Z The Mirror 1
## 479 DailyMirror 2020-01-01T18:17:00.000Z The Mirror 2
## 480 MetroUK 2020-01-01T18:16:45.000Z Metro 29
## 481 Telegraph 2020-01-01T18:14:09.000Z The Telegraph 3
## 482 Telegraph 2020-01-01T18:14:02.000Z The Telegraph 3
## 483 Telegraph 2020-01-01T18:13:53.000Z The Telegraph 17
## 484 MetroUK 2020-01-01T18:13:18.000Z Metro 2
## 485 TheSun 2020-01-01T18:13:00.000Z The Sun 2
## 486 DailyMirror 2020-01-01T18:11:18.000Z The Mirror 5
## 487 EveningStandard 2020-01-01T18:10:04.000Z Evening Standard 1
## 488 guardian 2020-01-01T18:10:03.000Z The Guardian 6
## 489 TheSun 2020-01-01T18:10:00.000Z The Sun 39
## 490 DailyMirror 2020-01-01T18:03:10.000Z The Mirror 10
## 491 TheSun 2020-01-01T18:02:11.000Z The Sun 3
## 492 Telegraph 2020-01-01T18:01:15.000Z The Telegraph 12
## 493 DailyMailUK 2020-01-01T18:00:05.000Z Daily Mail U.K. 6
## 494 MetroUK 2020-01-01T18:00:01.000Z Metro 2
## 495 TheSun 2020-01-01T18:00:00.000Z The Sun 1
## 496 DailyMirror 2020-01-01T17:56:30.000Z The Mirror 0
## 497 DailyMirror 2020-01-01T17:55:00.000Z The Mirror 9
## 498 TheSun 2020-01-01T17:52:19.000Z The Sun 0
## 499 EveningStandard 2020-01-01T17:52:16.000Z Evening Standard 1
## 500 DailyMirror 2020-01-01T17:52:00.000Z The Mirror 1
## 501 TheSun 2020-01-01T17:50:00.000Z The Sun 8
## 502 DailyMirror 2020-01-01T17:49:00.000Z The Mirror 2
## 503 MetroUK 2020-01-01T17:44:30.000Z Metro 3
## 504 MetroUK 2020-01-01T17:44:22.000Z Metro 1
## 505 guardian 2020-01-01T17:43:53.000Z The Guardian 3
## 506 guardian 2020-01-01T17:43:51.000Z The Guardian 4
## 507 DailyMirror 2020-01-01T17:43:50.000Z The Mirror 5
## 508 TheSun 2020-01-01T17:42:28.000Z The Sun 0
## 509 guardian 2020-01-01T17:42:28.000Z The Guardian 18
## 510 DailyMailUK 2020-01-01T17:40:09.000Z Daily Mail U.K. 2
## 511 TheSun 2020-01-01T17:40:00.000Z The Sun 10
## 512 EveningStandard 2020-01-01T17:39:36.000Z Evening Standard 1
## 513 DailyMirror 2020-01-01T17:39:22.000Z The Mirror 2
## 514 DailyMirror 2020-01-01T17:39:00.000Z The Mirror 7
## 515 thetimes 2020-01-01T17:36:36.000Z The Times 11
## 516 DailyMirror 2020-01-01T17:36:36.000Z The Mirror 4
## 517 EveningStandard 2020-01-01T17:34:37.000Z Evening Standard 1
## 518 TheSun 2020-01-01T17:32:38.000Z The Sun 0
## 519 Telegraph 2020-01-01T17:30:45.000Z The Telegraph 7
## 520 MetroUK 2020-01-01T17:30:05.000Z Metro 1
## 521 TheSun 2020-01-01T17:30:00.000Z The Sun 9
## 522 DailyMirror 2020-01-01T17:29:00.000Z The Mirror 1
## 523 DailyMirror 2020-01-01T17:29:00.000Z The Mirror 3
## 524 EveningStandard 2020-01-01T17:26:39.000Z Evening Standard 1
## 525 DailyMirror 2020-01-01T17:25:36.000Z The Mirror 1
## 526 DailyMirror 2020-01-01T17:24:07.000Z The Mirror 11
## 527 TheSun 2020-01-01T17:22:48.000Z The Sun 3
## 528 TheSun 2020-01-01T17:20:00.000Z The Sun 18
## 529 DailyMailUK 2020-01-01T17:19:06.000Z Daily Mail U.K. 1
## 530 DailyMirror 2020-01-01T17:19:00.000Z The Mirror 1
## 531 guardian 2020-01-01T17:17:57.000Z The Guardian 4
## 532 guardian 2020-01-01T17:17:56.000Z The Guardian 4
## 533 EveningStandard 2020-01-01T17:17:41.000Z Evening Standard 1
## 534 Telegraph 2020-01-01T17:15:48.000Z The Telegraph 10
## 535 DailyMirror 2020-01-01T17:15:00.000Z The Mirror 5
## 536 MetroUK 2020-01-01T17:14:39.000Z Metro 16
## 537 MetroUK 2020-01-01T17:14:33.000Z Metro 10
## 538 MetroUK 2020-01-01T17:14:22.000Z Metro 2
## 539 MetroUK 2020-01-01T17:14:09.000Z Metro 2
## 540 TheSun 2020-01-01T17:12:47.000Z The Sun 0
## 541 TheSun 2020-01-01T17:10:00.000Z The Sun 67
## 542 DailyMirror 2020-01-01T17:05:45.000Z The Mirror 9
## 543 DailyMirror 2020-01-01T17:04:48.000Z The Mirror 9
## 544 DailyMirror 2020-01-01T17:03:00.000Z The Mirror 4
## 545 TheSun 2020-01-01T17:02:57.000Z The Sun 9
## 546 DailyMirror 2020-01-01T17:01:15.000Z The Mirror 2
## 547 Telegraph 2020-01-01T17:01:02.000Z The Telegraph 2
## 548 EveningStandard 2020-01-01T17:01:02.000Z Evening Standard 0
## 549 MetroUK 2020-01-01T17:00:08.000Z Metro 2
## 550 TheSun 2020-01-01T17:00:01.000Z The Sun 24
## 551 DailyMailUK 2020-01-01T16:59:02.000Z Daily Mail U.K. 4
## 552 guardian 2020-01-01T16:53:43.000Z The Guardian 3
## 553 guardian 2020-01-01T16:53:41.000Z The Guardian 3
## 554 guardian 2020-01-01T16:53:40.000Z The Guardian 4
## 555 Telegraph 2020-01-01T16:52:17.000Z The Telegraph 4
## 556 TheSun 2020-01-01T16:52:09.000Z The Sun 0
## 557 DailyMailUK 2020-01-01T16:51:14.000Z Daily Mail U.K. 6
## 558 DailyMailUK 2020-01-01T16:51:03.000Z Daily Mail U.K. 0
## 559 TheSun 2020-01-01T16:50:00.000Z The Sun 68
## 560 DailyMirror 2020-01-01T16:48:00.000Z The Mirror 6
## 561 DailyMirror 2020-01-01T16:44:00.000Z The Mirror 1
## 562 MetroUK 2020-01-01T16:42:37.000Z Metro 5
## 563 MetroUK 2020-01-01T16:42:16.000Z Metro 46
## 564 TheSun 2020-01-01T16:42:15.000Z The Sun 10
## 565 DailyMailUK 2020-01-01T16:41:06.000Z Daily Mail U.K. 1
## 566 thetimes 2020-01-01T16:40:34.000Z The Times 2
## 567 TheSun 2020-01-01T16:40:00.000Z The Sun 9
## 568 MetroUK 2020-01-01T16:38:30.000Z Metro 37
## 569 DailyMirror 2020-01-01T16:36:00.000Z The Mirror 1
## 570 TheSun 2020-01-01T16:33:59.000Z The Sun 7
## 571 DailyMirror 2020-01-01T16:33:49.000Z The Mirror 2
## 572 DailyMirror 2020-01-01T16:32:30.000Z The Mirror 1
## 573 DailyMailUK 2020-01-01T16:32:07.000Z Daily Mail U.K. 1
## 574 Telegraph 2020-01-01T16:31:54.000Z The Telegraph 10
## 575 guardian 2020-01-01T16:31:40.000Z The Guardian 39
## 576 Telegraph 2020-01-01T16:30:48.000Z The Telegraph 2
## 577 Telegraph 2020-01-01T16:30:34.000Z The Telegraph 0
## 578 MetroUK 2020-01-01T16:30:10.000Z Metro 0
## 579 TheSun 2020-01-01T16:30:00.000Z The Sun 0
## 580 DailyMirror 2020-01-01T16:29:00.000Z The Mirror 1
## 581 DailyMirror 2020-01-01T16:28:51.000Z The Mirror 20
## 582 TheSun 2020-01-01T16:27:30.000Z The Sun 9
## 583 EveningStandard 2020-01-01T16:25:10.000Z Evening Standard 0
## 584 TheSun 2020-01-01T16:23:00.000Z The Sun 3
## 585 DailyMailUK 2020-01-01T16:22:07.000Z Daily Mail U.K. 6
## 586 TheSun 2020-01-01T16:20:00.000Z The Sun 15
## 587 guardian 2020-01-01T16:18:06.000Z The Guardian 29
## 588 TheSun 2020-01-01T16:12:57.000Z The Sun 0
## 589 DailyMirror 2020-01-01T16:11:00.000Z The Mirror 3
## 590 DailyMailUK 2020-01-01T16:10:08.000Z Daily Mail U.K. 10
## 591 TheSun 2020-01-01T16:10:00.000Z The Sun 14
## 592 DailyMirror 2020-01-01T16:08:00.000Z The Mirror 6
## 593 EveningStandard 2020-01-01T16:07:03.000Z Evening Standard 0
## 594 guardian 2020-01-01T16:05:04.000Z The Guardian 34
## 595 DailyMirror 2020-01-01T16:02:27.000Z The Mirror 1
## 596 TheSun 2020-01-01T16:02:07.000Z The Sun 2
## 597 Telegraph 2020-01-01T16:01:12.000Z The Telegraph 0
## 598 MetroUK 2020-01-01T16:00:11.000Z Metro 8
## 599 TheSun 2020-01-01T16:00:00.000Z The Sun 3
## 600 DailyMirror 2020-01-01T15:59:39.000Z The Mirror 2
## 601 DailyMirror 2020-01-01T15:59:03.000Z The Mirror 2
## 602 DailyMailUK 2020-01-01T15:59:02.000Z Daily Mail U.K. 7
## 603 DailyMirror 2020-01-01T15:58:13.000Z The Mirror 3
## 604 DailyMirror 2020-01-01T15:58:00.000Z The Mirror 2
## 605 DailyMirror 2020-01-01T15:57:40.000Z The Mirror 5
## 606 DailyMirror 2020-01-01T15:55:00.000Z The Mirror 2
## 607 guardian 2020-01-01T15:53:18.000Z The Guardian 26
## 608 DailyMirror 2020-01-01T15:52:33.000Z The Mirror 4
## 609 DailyMirror 2020-01-01T15:52:18.000Z The Mirror 1
## 610 TheSun 2020-01-01T15:52:17.000Z The Sun 3
## 611 DailyMirror 2020-01-01T15:52:00.000Z The Mirror 5
## 612 DailyMirror 2020-01-01T15:52:00.000Z The Mirror 12
## 613 DailyMailUK 2020-01-01T15:50:03.000Z Daily Mail U.K. 14
## 614 TheSun 2020-01-01T15:50:00.000Z The Sun 19
## 615 EveningStandard 2020-01-01T15:49:19.000Z Evening Standard 0
## 616 Telegraph 2020-01-01T15:46:30.000Z The Telegraph 4
## 617 thetimes 2020-01-01T15:45:32.000Z The Times 6
## 618 DailyMirror 2020-01-01T15:43:00.000Z The Mirror 6
## 619 TheSun 2020-01-01T15:42:27.000Z The Sun 2
## 620 DailyMirror 2020-01-01T15:41:32.000Z The Mirror 10
## 621 DailyMailUK 2020-01-01T15:40:07.000Z Daily Mail U.K. 5
## 622 TheSun 2020-01-01T15:40:00.000Z The Sun 39
## 623 guardian 2020-01-01T15:39:02.000Z The Guardian 1
## 624 guardian 2020-01-01T15:35:32.000Z The Guardian 61
## 625 DailyMirror 2020-01-01T15:34:00.000Z The Mirror 9
## 626 DailyMirror 2020-01-01T15:33:00.000Z The Mirror 3
## 627 TheSun 2020-01-01T15:32:34.000Z The Sun 1
## 628 EveningStandard 2020-01-01T15:31:36.000Z Evening Standard 1
## 629 Telegraph 2020-01-01T15:30:44.000Z The Telegraph 3
## 630 MetroUK 2020-01-01T15:30:10.000Z Metro 2
## 631 DailyMailUK 2020-01-01T15:30:07.000Z Daily Mail U.K. 8
## 632 TheSun 2020-01-01T15:30:00.000Z The Sun 12
## 633 thetimes 2020-01-01T15:28:42.000Z The Times 6
## 634 DailyMirror 2020-01-01T15:28:00.000Z The Mirror 0
## 635 DailyMirror 2020-01-01T15:28:00.000Z The Mirror 1
## 636 DailyMirror 2020-01-01T15:26:03.000Z The Mirror 3
## 637 DailyMirror 2020-01-01T15:25:43.000Z The Mirror 4
## 638 DailyMirror 2020-01-01T15:24:00.000Z The Mirror 4
## 639 Telegraph 2020-01-01T15:23:13.000Z The Telegraph 6
## 640 TheSun 2020-01-01T15:22:36.000Z The Sun 0
## 641 DailyMirror 2020-01-01T15:21:08.000Z The Mirror 0
## 642 DailyMailUK 2020-01-01T15:20:05.000Z Daily Mail U.K. 28
## 643 TheSun 2020-01-01T15:20:00.000Z The Sun 22
## 644 Telegraph 2020-01-01T15:19:08.000Z The Telegraph 15
## 645 guardian 2020-01-01T15:14:11.000Z The Guardian 8
## 646 TheSun 2020-01-01T15:12:58.000Z The Sun 6
## 647 EveningStandard 2020-01-01T15:11:23.000Z Evening Standard 0
## 648 DailyMailUK 2020-01-01T15:11:05.000Z Daily Mail U.K. 3
## 649 DailyMirror 2020-01-01T15:11:00.000Z The Mirror 4
## 650 TheSun 2020-01-01T15:10:00.000Z The Sun 18
## 651 DailyMirror 2020-01-01T15:09:00.000Z The Mirror 5
## 652 DailyMirror 2020-01-01T15:05:35.000Z The Mirror 0
## 653 TheSun 2020-01-01T15:02:23.000Z The Sun 1
## 654 DailyMirror 2020-01-01T15:02:00.000Z The Mirror 2
## 655 Telegraph 2020-01-01T15:00:33.000Z The Telegraph 8
## 656 MetroUK 2020-01-01T15:00:09.000Z Metro 1
## 657 TheSun 2020-01-01T15:00:00.000Z The Sun 15
## 658 DailyMailUK 2020-01-01T14:59:07.000Z Daily Mail U.K. 0
## 659 DailyMirror 2020-01-01T14:55:09.000Z The Mirror 3
## 660 DailyMirror 2020-01-01T14:52:57.000Z The Mirror 4
## 661 Telegraph 2020-01-01T14:52:41.000Z The Telegraph 64
## 662 TheSun 2020-01-01T14:52:35.000Z The Sun 3
## 663 DailyMirror 2020-01-01T14:52:00.000Z The Mirror 2
## 664 DailyMirror 2020-01-01T14:51:52.000Z The Mirror 5
## 665 EveningStandard 2020-01-01T14:51:35.000Z Evening Standard 0
## 666 guardian 2020-01-01T14:51:21.000Z The Guardian 1
## 667 guardian 2020-01-01T14:51:20.000Z The Guardian 11
## 668 guardian 2020-01-01T14:51:19.000Z The Guardian 15
## 669 DailyMirror 2020-01-01T14:51:17.000Z The Mirror 1
## 670 DailyMailUK 2020-01-01T14:51:05.000Z Daily Mail U.K. 3
## 671 TheSun 2020-01-01T14:50:00.000Z The Sun 8
## 672 DailyMirror 2020-01-01T14:45:57.000Z The Mirror 8
## 673 Telegraph 2020-01-01T14:45:46.000Z The Telegraph 2
## 674 DailyMirror 2020-01-01T14:45:00.000Z The Mirror 0
## 675 DailyMirror 2020-01-01T14:43:19.000Z The Mirror 2
## 676 TheSun 2020-01-01T14:42:45.000Z The Sun 6
## 677 DailyMailUK 2020-01-01T14:42:02.000Z Daily Mail U.K. 4
## 678 Telegraph 2020-01-01T14:41:22.000Z The Telegraph 4
## 679 TheSun 2020-01-01T14:40:00.000Z The Sun 8
## 680 guardian 2020-01-01T14:38:49.000Z The Guardian 19
## 681 DailyMirror 2020-01-01T14:38:45.000Z The Mirror 4
## 682 DailyMirror 2020-01-01T14:36:00.000Z The Mirror 0
## 683 DailyMirror 2020-01-01T14:34:47.000Z The Mirror 28
## 684 Telegraph 2020-01-01T14:33:49.000Z The Telegraph 7
## 685 TheSun 2020-01-01T14:33:21.000Z The Sun 4
## 686 DailyMirror 2020-01-01T14:33:00.000Z The Mirror 1
## 687 EveningStandard 2020-01-01T14:32:51.000Z Evening Standard 0
## 688 TheSun 2020-01-01T14:32:18.000Z The Sun 0
## 689 DailyMirror 2020-01-01T14:31:51.000Z The Mirror 0
## 690 DailyMailUK 2020-01-01T14:31:05.000Z Daily Mail U.K. 11
## 691 MetroUK 2020-01-01T14:30:04.000Z Metro 4
## 692 TheSun 2020-01-01T14:30:00.000Z The Sun 26
## 693 Telegraph 2020-01-01T14:29:21.000Z The Telegraph 4
## 694 guardian 2020-01-01T14:29:04.000Z The Guardian 3
## 695 DailyMirror 2020-01-01T14:28:00.000Z The Mirror 3
## 696 TheSun 2020-01-01T14:23:10.000Z The Sun 2
## 697 DailyMirror 2020-01-01T14:22:44.000Z The Mirror 1
## 698 guardian 2020-01-01T14:22:05.000Z The Guardian 41
## 699 DailyMirror 2020-01-01T14:21:58.000Z The Mirror 3
## 700 DailyMailUK 2020-01-01T14:20:09.000Z Daily Mail U.K. 8
## 701 TheSun 2020-01-01T14:20:00.000Z The Sun 12
## 702 DailyMirror 2020-01-01T14:19:00.000Z The Mirror 3
## 703 DailyMirror 2020-01-01T14:18:26.000Z The Mirror 2
## 704 DailyMirror 2020-01-01T14:18:13.000Z The Mirror 1
## 705 Telegraph 2020-01-01T14:16:11.000Z The Telegraph 10
## 706 EveningStandard 2020-01-01T14:13:03.000Z Evening Standard 0
## 707 TheSun 2020-01-01T14:13:03.000Z The Sun 0
## 708 guardian 2020-01-01T14:11:04.000Z The Guardian 19
## 709 DailyMirror 2020-01-01T14:11:00.000Z The Mirror 2
## 710 DailyMailUK 2020-01-01T14:10:06.000Z Daily Mail U.K. 0
## 711 TheSun 2020-01-01T14:10:00.000Z The Sun 19
## 712 DailyMirror 2020-01-01T14:04:14.000Z The Mirror 4
## 713 guardian 2020-01-01T14:04:12.000Z The Guardian 16
## 714 guardian 2020-01-01T14:04:11.000Z The Guardian 32
## 715 thetimes 2020-01-01T14:03:08.000Z The Times 3
## 716 TheSun 2020-01-01T14:02:09.000Z The Sun 3
## 717 DailyMirror 2020-01-01T14:01:19.000Z The Mirror 5
## 718 Telegraph 2020-01-01T14:00:21.000Z The Telegraph 5
## 719 DailyMirror 2020-01-01T14:00:19.000Z The Mirror 3
## 720 MetroUK 2020-01-01T14:00:04.000Z Metro 0
## 721 TheSun 2020-01-01T14:00:01.000Z The Sun 15
## 722 guardian 2020-01-01T13:59:12.000Z The Guardian 12
## 723 DailyMailUK 2020-01-01T13:59:04.000Z Daily Mail U.K. 1
## 724 DailyMirror 2020-01-01T13:54:45.000Z The Mirror 4
## 725 EveningStandard 2020-01-01T13:53:18.000Z Evening Standard 38
## 726 TheSun 2020-01-01T13:52:50.000Z The Sun 1
## 727 DailyMirror 2020-01-01T13:52:00.000Z The Mirror 7
## 728 DailyMailUK 2020-01-01T13:51:02.000Z Daily Mail U.K. 4
## 729 TheSun 2020-01-01T13:50:00.000Z The Sun 35
## 730 guardian 2020-01-01T13:48:23.000Z The Guardian 42
## 731 DailyMirror 2020-01-01T13:48:00.000Z The Mirror 1
## 732 Telegraph 2020-01-01T13:45:29.000Z The Telegraph 5
## 733 DailyMirror 2020-01-01T13:42:21.000Z The Mirror 4
## 734 DailyMailUK 2020-01-01T13:40:06.000Z Daily Mail U.K. 7
## 735 TheSun 2020-01-01T13:40:00.000Z The Sun 42
## 736 DailyMirror 2020-01-01T13:38:13.000Z The Mirror 14
## 737 guardian 2020-01-01T13:37:37.000Z The Guardian 1
## 738 guardian 2020-01-01T13:37:36.000Z The Guardian 10
## 739 guardian 2020-01-01T13:35:39.000Z The Guardian 33
## 740 EveningStandard 2020-01-01T13:33:36.000Z Evening Standard 0
## 741 DailyMirror 2020-01-01T13:33:00.000Z The Mirror 2
## 742 Telegraph 2020-01-01T13:30:47.000Z The Telegraph 4
## 743 thetimes 2020-01-01T13:30:41.000Z The Times 4
## 744 MetroUK 2020-01-01T13:30:12.000Z Metro 9
## 745 TheSun 2020-01-01T13:30:00.000Z The Sun 34
## 746 DailyMirror 2020-01-01T13:28:00.000Z The Mirror 3
## 747 DailyMirror 2020-01-01T13:26:47.000Z The Mirror 2
## 748 DailyMailUK 2020-01-01T13:26:46.000Z Daily Mail U.K. 11
## 749 DailyMirror 2020-01-01T13:26:03.000Z The Mirror 1
## 750 DailyMirror 2020-01-01T13:26:00.000Z The Mirror 3
## 751 guardian 2020-01-01T13:24:45.000Z The Guardian 10
## 752 DailyMirror 2020-01-01T13:22:41.000Z The Mirror 0
## 753 TheSun 2020-01-01T13:20:00.000Z The Sun 13
## 754 DailyMailUK 2020-01-01T13:19:07.000Z Daily Mail U.K. 6
## 755 DailyMirror 2020-01-01T13:18:49.000Z The Mirror 0
## 756 EveningStandard 2020-01-01T13:16:52.000Z Evening Standard 1
## 757 DailyMirror 2020-01-01T13:16:17.000Z The Mirror 6
## 758 Telegraph 2020-01-01T13:15:56.000Z The Telegraph 733
## 759 guardian 2020-01-01T13:15:54.000Z The Guardian 4
## 760 DailyMirror 2020-01-01T13:15:00.000Z The Mirror 4
## 761 DailyMirror 2020-01-01T13:15:00.000Z The Mirror 1
## 762 DailyMirror 2020-01-01T13:13:31.000Z The Mirror 8
## 763 TheSun 2020-01-01T13:10:00.000Z The Sun 12
## 764 guardian 2020-01-01T13:09:57.000Z The Guardian 16
## 765 thetimes 2020-01-01T13:09:57.000Z The Times 6
## 766 DailyMirror 2020-01-01T13:09:36.000Z The Mirror 4
## 767 DailyMirror 2020-01-01T13:09:00.000Z The Mirror 3
## 768 DailyMailUK 2020-01-01T13:08:03.000Z Daily Mail U.K. 136
## 769 Telegraph 2020-01-01T13:00:56.000Z The Telegraph 9
## 770 TheSun 2020-01-01T13:00:01.000Z The Sun 18
## 771 guardian 2020-01-01T12:59:49.000Z The Guardian 10
## 772 DailyMailUK 2020-01-01T12:59:08.000Z Daily Mail U.K. 1
## 773 EveningStandard 2020-01-01T12:58:50.000Z Evening Standard 6
## 774 MetroUK 2020-01-01T12:56:06.000Z Metro 0
## 775 DailyMailUK 2020-01-01T12:55:13.000Z Daily Mail U.K. 151
## 776 TheSun 2020-01-01T12:52:18.000Z The Sun 4
## 777 DailyMirror 2020-01-01T12:52:00.000Z The Mirror 3
## 778 DailyMirror 2020-01-01T12:51:00.000Z The Mirror 4
## 779 thetimes 2020-01-01T12:50:31.000Z The Times 12
## 780 TheSun 2020-01-01T12:50:00.000Z The Sun 11
## 781 guardian 2020-01-01T12:49:30.000Z The Guardian 24
## 782 guardian 2020-01-01T12:49:28.000Z The Guardian 134
## 783 MetroUK 2020-01-01T12:47:12.000Z Metro 1
## 784 guardian 2020-01-01T12:47:10.000Z The Guardian 25
## 785 Telegraph 2020-01-01T12:45:18.000Z The Telegraph 3
## 786 DailyMailUK 2020-01-01T12:45:07.000Z Daily Mail U.K. 3
## 787 TheSun 2020-01-01T12:42:16.000Z The Sun 0
## 788 TheSun 2020-01-01T12:40:00.000Z The Sun 56
## 789 DailyMailUK 2020-01-01T12:37:09.000Z Daily Mail U.K. 5
## 790 guardian 2020-01-01T12:36:11.000Z The Guardian 22
## 791 EveningStandard 2020-01-01T12:33:15.000Z Evening Standard 2
## 792 DailyMirror 2020-01-01T12:32:46.000Z The Mirror 4
## 793 DailyMirror 2020-01-01T12:32:32.000Z The Mirror 7
## 794 TheSun 2020-01-01T12:32:17.000Z The Sun 1
## 795 Telegraph 2020-01-01T12:31:19.000Z The Telegraph 4
## 796 DailyMailUK 2020-01-01T12:31:07.000Z Daily Mail U.K. 2
## 797 MetroUK 2020-01-01T12:30:11.000Z Metro 4
## 798 TheSun 2020-01-01T12:30:00.000Z The Sun 8
## 799 DailyMirror 2020-01-01T12:27:00.000Z The Mirror 0
## 800 DailyMirror 2020-01-01T12:27:00.000Z The Mirror 0
## 801 DailyMirror 2020-01-01T12:25:52.000Z The Mirror 11
## 802 guardian 2020-01-01T12:25:18.000Z The Guardian 4
## 803 TheSun 2020-01-01T12:22:56.000Z The Sun 0
## 804 TheSun 2020-01-01T12:22:49.000Z The Sun 1
## 805 guardian 2020-01-01T12:21:46.000Z The Guardian 17
## 806 DailyMailUK 2020-01-01T12:20:04.000Z Daily Mail U.K. 0
## 807 TheSun 2020-01-01T12:20:00.000Z The Sun 28
## 808 Telegraph 2020-01-01T12:15:58.000Z The Telegraph 7
## 809 TheSun 2020-01-01T12:12:56.000Z The Sun 3
## 810 EveningStandard 2020-01-01T12:12:56.000Z Evening Standard 1
## 811 DailyMirror 2020-01-01T12:12:30.000Z The Mirror 3
## 812 DailyMirror 2020-01-01T12:12:00.000Z The Mirror 1
## 813 guardian 2020-01-01T12:10:17.000Z The Guardian 4
## 814 DailyMailUK 2020-01-01T12:10:05.000Z Daily Mail U.K. 20
## 815 TheSun 2020-01-01T12:10:00.000Z The Sun 28
## 816 DailyMirror 2020-01-01T12:10:00.000Z The Mirror 2
## 817 DailyMirror 2020-01-01T12:08:36.000Z The Mirror 7
## 818 DailyMirror 2020-01-01T12:07:50.000Z The Mirror 3
## 819 Telegraph 2020-01-01T12:06:54.000Z The Telegraph 10
## 820 TheSun 2020-01-01T12:02:58.000Z The Sun 1
## 821 DailyMirror 2020-01-01T12:01:58.000Z The Mirror 0
## 822 DailyMirror 2020-01-01T12:01:19.000Z The Mirror 6
## 823 Telegraph 2020-01-01T12:01:09.000Z The Telegraph 5
## 824 thetimes 2020-01-01T12:01:00.000Z The Times 3
## 825 MetroUK 2020-01-01T12:00:12.000Z Metro 5
## 826 TheSun 2020-01-01T12:00:00.000Z The Sun 16
## 827 guardian 2020-01-01T11:59:25.000Z The Guardian 6
## 828 guardian 2020-01-01T11:59:23.000Z The Guardian 19
## 829 guardian 2020-01-01T11:59:22.000Z The Guardian 4
## 830 DailyMailUK 2020-01-01T11:59:04.000Z Daily Mail U.K. 5
## 831 guardian 2020-01-01T11:58:03.000Z The Guardian 4
## 832 DailyMirror 2020-01-01T11:56:00.000Z The Mirror 2
## 833 TheSun 2020-01-01T11:52:35.000Z The Sun 0
## 834 DailyMirror 2020-01-01T11:52:00.000Z The Mirror 3
## 835 DailyMailUK 2020-01-01T11:51:37.000Z Daily Mail U.K. 17
## 836 DailyMirror 2020-01-01T11:50:39.000Z The Mirror 8
## 837 TheSun 2020-01-01T11:50:00.000Z The Sun 23
## 838 EveningStandard 2020-01-01T11:48:29.000Z Evening Standard 0
## 839 DailyMailUK 2020-01-01T11:46:02.000Z Daily Mail U.K. 4
## 840 DailyMirror 2020-01-01T11:45:42.000Z The Mirror 8
## 841 Telegraph 2020-01-01T11:45:37.000Z The Telegraph 4
## 842 guardian 2020-01-01T11:44:34.000Z The Guardian 13
## 843 DailyMirror 2020-01-01T11:44:00.000Z The Mirror 0
## 844 DailyMirror 2020-01-01T11:43:08.000Z The Mirror 2
## 845 TheSun 2020-01-01T11:42:36.000Z The Sun 3
## 846 DailyMirror 2020-01-01T11:40:30.000Z The Mirror 1
## 847 DailyMailUK 2020-01-01T11:40:01.000Z Daily Mail U.K. 3
## 848 TheSun 2020-01-01T11:40:00.000Z The Sun 20
## 849 DailyMirror 2020-01-01T11:37:56.000Z The Mirror 5
## 850 DailyMailUK 2020-01-01T11:33:02.000Z Daily Mail U.K. 4
## 851 TheSun 2020-01-01T11:32:45.000Z The Sun 2
## 852 Telegraph 2020-01-01T11:31:01.000Z The Telegraph 13
## 853 DailyMirror 2020-01-01T11:30:59.000Z The Mirror 2
## 854 EveningStandard 2020-01-01T11:30:51.000Z Evening Standard 0
## 855 EveningStandard 2020-01-01T11:30:50.000Z Evening Standard 0
## 856 MetroUK 2020-01-01T11:30:07.000Z Metro 154
## 857 TheSun 2020-01-01T11:30:00.000Z The Sun 35
## 858 DailyMirror 2020-01-01T11:29:50.000Z The Mirror 2
## 859 guardian 2020-01-01T11:29:15.000Z The Guardian 18
## 860 Telegraph 2020-01-02T10:30:22.000Z The Telegraph 25
## 861 EveningStandard 2020-01-02T10:30:21.000Z Evening Standard 1
## 862 TheSun 2020-01-02T10:30:00.000Z The Sun 34
## 863 TheSun 2020-01-02T10:29:51.000Z The Sun 7
## 864 DailyMirror 2020-01-02T10:29:13.000Z The Mirror 11
## 865 DailyMailUK 2020-01-02T10:28:15.000Z Daily Mail U.K. 3
## 866 TheSun 2020-01-02T10:28:06.000Z The Sun 2
## 867 DailyMirror 2020-01-02T10:27:53.000Z The Mirror 1
## 868 DailyMirror 2020-01-02T10:27:34.000Z The Mirror 3
## 869 DailyMirror 2020-01-02T10:27:08.000Z The Mirror 5
## 870 DailyMirror 2020-01-02T10:27:03.000Z The Mirror 1
## 871 TheSun 2020-01-02T10:27:02.000Z The Sun 1
## 872 EveningStandard 2020-01-02T10:24:23.000Z Evening Standard 3
## 873 guardian 2020-01-02T10:23:04.000Z The Guardian 10
## 874 guardian 2020-01-02T10:23:03.000Z The Guardian 7
## 875 thetimes 2020-01-02T10:22:24.000Z The Times 6
## 876 TheSun 2020-01-02T10:22:24.000Z The Sun 3
## 877 DailyMailUK 2020-01-02T10:20:06.000Z Daily Mail U.K. 0
## 878 TheSun 2020-01-02T10:20:00.000Z The Sun 24
## 879 TheSun 2020-01-02T10:20:00.000Z The Sun 2
## 880 EveningStandard 2020-01-02T10:19:09.000Z Evening Standard 0
## 881 DailyMirror 2020-01-02T10:19:07.000Z The Mirror 3
## 882 Telegraph 2020-01-02T10:16:11.000Z The Telegraph 12
## 883 DailyMirror 2020-01-02T10:15:37.000Z The Mirror 3
## 884 EveningStandard 2020-01-02T10:15:07.000Z Evening Standard 2
## 885 DailyMailUK 2020-01-02T10:12:49.000Z Daily Mail U.K. 11
## 886 TheSun 2020-01-02T10:12:11.000Z The Sun 1
## 887 TheSun 2020-01-02T10:11:55.000Z The Sun 4
## 888 guardian 2020-01-02T10:10:12.000Z The Guardian 14
## 889 DailyMailUK 2020-01-02T10:10:03.000Z Daily Mail U.K. 4
## 890 TheSun 2020-01-02T10:10:00.000Z The Sun 4
## 891 DailyMirror 2020-01-02T10:09:52.000Z The Mirror 1
## 892 EveningStandard 2020-01-02T10:08:14.000Z Evening Standard 0
## 893 DailyMailUK 2020-01-02T10:06:17.000Z Daily Mail U.K. 5
## 894 TheSun 2020-01-02T10:05:15.000Z The Sun 6
## 895 MetroUK 2020-01-02T10:03:38.000Z Metro 4
## 896 EveningStandard 2020-01-02T10:02:32.000Z Evening Standard 11
## 897 TheSun 2020-01-02T10:02:20.000Z The Sun 2
## 898 DailyMirror 2020-01-02T10:02:00.000Z The Mirror 2
## 899 DailyMirror 2020-01-02T10:01:25.000Z The Mirror 1
## 900 DailyMirror 2020-01-02T10:01:24.000Z The Mirror 13
## 901 Telegraph 2020-01-02T10:01:24.000Z The Telegraph 8
## 902 DailyMirror 2020-01-02T10:00:33.000Z The Mirror 3
## 903 DailyMailUK 2020-01-02T10:00:08.000Z Daily Mail U.K. 8
## 904 TheSun 2020-01-02T10:00:00.000Z The Sun 6
## 905 EveningStandard 2020-01-02T10:00:00.000Z Evening Standard 10
## 906 guardian 2020-01-02T09:57:28.000Z The Guardian 20
## 907 EveningStandard 2020-01-02T09:55:06.000Z Evening Standard 1
## 908 DailyMirror 2020-01-02T09:53:29.000Z The Mirror 0
## 909 TheSun 2020-01-02T09:52:09.000Z The Sun 1
## 910 DailyMirror 2020-01-02T09:51:44.000Z The Mirror 1
## 911 DailyMirror 2020-01-02T09:51:00.000Z The Mirror 2
## 912 DailyMailUK 2020-01-02T09:50:08.000Z Daily Mail U.K. 2
## 913 TheSun 2020-01-02T09:50:00.000Z The Sun 10
## 914 guardian 2020-01-02T09:48:14.000Z The Guardian 150
## 915 DailyMirror 2020-01-02T09:47:05.000Z The Mirror 2
## 916 DailyMirror 2020-01-02T09:46:20.000Z The Mirror 2
## 917 DailyMailUK 2020-01-02T09:46:19.000Z Daily Mail U.K. 18
## 918 Telegraph 2020-01-02T09:45:20.000Z The Telegraph 1
## 919 DailyMirror 2020-01-02T09:44:30.000Z The Mirror 2
## 920 EveningStandard 2020-01-02T09:42:28.000Z Evening Standard 3
## 921 TheSun 2020-01-02T09:42:20.000Z The Sun 3
## 922 DailyMirror 2020-01-02T09:41:52.000Z The Mirror 1
## 923 DailyMirror 2020-01-02T09:40:34.000Z The Mirror 1
## 924 EveningStandard 2020-01-02T09:40:07.000Z Evening Standard 1
## 925 DailyMailUK 2020-01-02T09:40:06.000Z Daily Mail U.K. 0
## 926 TheSun 2020-01-02T09:40:00.000Z The Sun 7
## 927 Telegraph 2020-01-02T09:35:28.000Z The Telegraph 0
## 928 DailyMirror 2020-01-02T09:35:00.000Z The Mirror 2
## 929 guardian 2020-01-02T09:34:50.000Z The Guardian 6
## 930 guardian 2020-01-02T09:34:50.000Z The Guardian 12
## 931 guardian 2020-01-02T09:34:48.000Z The Guardian 8
## 932 DailyMirror 2020-01-02T09:34:07.000Z The Mirror 0
## 933 TheSun 2020-01-02T09:32:28.000Z The Sun 3
## 934 Telegraph 2020-01-02T09:30:39.000Z The Telegraph 14
## 935 thetimes 2020-01-02T09:30:35.000Z The Times 7
## 936 DailyMailUK 2020-01-02T09:30:07.000Z Daily Mail U.K. 12
## 937 MetroUK 2020-01-02T09:30:06.000Z Metro 7
## 938 TheSun 2020-01-02T09:30:00.000Z The Sun 1
## 939 DailyMirror 2020-01-02T09:30:00.000Z The Mirror 1
## 940 EveningStandard 2020-01-02T09:29:28.000Z Evening Standard 0
## 941 guardian 2020-01-02T09:25:33.000Z The Guardian 45
## 942 TheSun 2020-01-02T09:23:20.000Z The Sun 1
## 943 DailyMirror 2020-01-02T09:20:24.000Z The Mirror 6
## 944 DailyMailUK 2020-01-02T09:20:07.000Z Daily Mail U.K. 11
## 945 TheSun 2020-01-02T09:20:00.000Z The Sun 2
## 946 MetroUK 2020-01-02T09:19:28.000Z Metro 0
## 947 DailyMailUK 2020-01-02T09:17:29.000Z Daily Mail U.K. 13
## 948 DailyMirror 2020-01-02T09:16:42.000Z The Mirror 2
## 949 DailyMirror 2020-01-02T09:15:12.000Z The Mirror 1
## 950 DailyMirror 2020-01-02T09:14:00.000Z The Mirror 39
## 951 EveningStandard 2020-01-02T09:13:55.000Z Evening Standard 1
## 952 guardian 2020-01-02T09:13:12.000Z The Guardian 40
## 953 guardian 2020-01-02T09:12:57.000Z The Guardian 6
## 954 TheSun 2020-01-02T09:12:57.000Z The Sun 4
## 955 DailyMirror 2020-01-02T09:11:46.000Z The Mirror 4
## 956 DailyMirror 2020-01-02T09:10:11.000Z The Mirror 6
## 957 DailyMailUK 2020-01-02T09:10:06.000Z Daily Mail U.K. 3
## 958 TheSun 2020-01-02T09:10:00.000Z The Sun 14
## 959 MetroUK 2020-01-02T09:08:17.000Z Metro 6
## 960 MetroUK 2020-01-02T09:08:11.000Z Metro 3
## 961 TheSun 2020-01-02T09:02:17.000Z The Sun 2
## 962 DailyMirror 2020-01-02T09:01:22.000Z The Mirror 1
## 963 DailyMirror 2020-01-02T09:01:00.000Z The Mirror 1
## 964 guardian 2020-01-02T09:00:09.000Z The Guardian 6
## 965 TheSun 2020-01-02T09:00:00.000Z The Sun 5
## 966 DailyMailUK 2020-01-02T08:59:08.000Z Daily Mail U.K. 7
## 967 EveningStandard 2020-01-02T08:58:29.000Z Evening Standard 0
## 968 TheSun 2020-01-02T08:52:12.000Z The Sun 1
## 969 DailyMirror 2020-01-02T08:52:00.000Z The Mirror 2
## 970 DailyMirror 2020-01-02T08:51:45.000Z The Mirror 78
## 971 TheSun 2020-01-02T08:51:22.000Z The Sun 9
## 972 DailyMailUK 2020-01-02T08:51:06.000Z Daily Mail U.K. 20
## 973 DailyMirror 2020-01-02T08:50:48.000Z The Mirror 3
## 974 TheSun 2020-01-02T08:50:00.000Z The Sun 6
## 975 guardian 2020-01-02T08:49:48.000Z The Guardian 4
## 976 DailyMirror 2020-01-02T08:47:29.000Z The Mirror 0
## 977 DailyMailUK 2020-01-02T08:46:36.000Z Daily Mail U.K. 7
## 978 guardian 2020-01-02T08:46:09.000Z The Guardian 36
## 979 DailyMailUK 2020-01-02T08:44:21.000Z Daily Mail U.K. 82
## 980 MetroUK 2020-01-02T08:43:55.000Z Metro 4
## 981 DailyMailUK 2020-01-02T08:43:54.000Z Daily Mail U.K. 21
## 982 EveningStandard 2020-01-02T08:43:11.000Z Evening Standard 0
## 983 DailyMirror 2020-01-02T08:43:00.000Z The Mirror 1
## 984 TheSun 2020-01-02T08:42:13.000Z The Sun 2
## 985 DailyMirror 2020-01-02T08:42:00.000Z The Mirror 5
## 986 DailyMirror 2020-01-02T08:41:00.000Z The Mirror 0
## 987 DailyMailUK 2020-01-02T08:40:05.000Z Daily Mail U.K. 2
## 988 TheSun 2020-01-02T08:40:00.000Z The Sun 10
## 989 DailyMirror 2020-01-02T08:35:10.000Z The Mirror 2
## 990 TheSun 2020-01-02T08:32:50.000Z The Sun 4
## 991 guardian 2020-01-02T08:31:47.000Z The Guardian 22
## 992 Telegraph 2020-01-02T08:30:59.000Z The Telegraph 10
## 993 Telegraph 2020-01-02T08:30:57.000Z The Telegraph 13
## 994 MetroUK 2020-01-02T08:30:09.000Z Metro 7
## 995 EveningStandard 2020-01-02T08:30:07.000Z Evening Standard 3
## 996 TheSun 2020-01-02T08:30:00.000Z The Sun 14
## 997 DailyMirror 2020-01-02T08:30:00.000Z The Mirror 4
## 998 DailyMailUK 2020-01-02T08:29:21.000Z Daily Mail U.K. 8
## 999 TheSun 2020-01-02T08:28:45.000Z The Sun 5
## 1000 EveningStandard 2020-01-02T08:27:45.000Z Evening Standard 0
## 1001 TheSun 2020-01-02T08:22:50.000Z The Sun 2
## 1002 DailyMailUK 2020-01-02T08:20:06.000Z Daily Mail U.K. 1
## 1003 TheSun 2020-01-02T08:20:00.000Z The Sun 13
## 1004 guardian 2020-01-02T08:19:55.000Z The Guardian 40
## 1005 DailyMirror 2020-01-02T08:18:00.000Z The Mirror 0
## 1006 DailyMirror 2020-01-02T08:15:05.000Z The Mirror 5
## 1007 DailyMirror 2020-01-02T08:15:01.000Z The Mirror 2
## 1008 MetroUK 2020-01-02T08:13:33.000Z Metro 1
## 1009 DailyMirror 2020-01-02T08:13:28.000Z The Mirror 3
## 1010 TheSun 2020-01-02T08:13:00.000Z The Sun 5
## 1011 DailyMirror 2020-01-02T08:12:08.000Z The Mirror 12
## 1012 EveningStandard 2020-01-02T08:12:01.000Z Evening Standard 1
## 1013 Telegraph 2020-01-02T08:11:15.000Z The Telegraph 3
## 1014 TheSun 2020-01-02T08:10:00.000Z The Sun 18
## 1015 DailyMirror 2020-01-02T08:09:35.000Z The Mirror 4
## 1016 DailyMailUK 2020-01-02T08:09:32.000Z Daily Mail U.K. 12
## 1017 thetimes 2020-01-02T08:06:08.000Z The Times 19
## 1018 guardian 2020-01-02T08:03:06.000Z The Guardian 8
## 1019 TheSun 2020-01-02T08:02:58.000Z The Sun 6
## 1020 Telegraph 2020-01-02T08:01:06.000Z The Telegraph 2
## 1021 DailyMirror 2020-01-02T08:00:29.000Z The Mirror 0
## 1022 MetroUK 2020-01-02T08:00:11.000Z Metro 2
## 1023 TheSun 2020-01-02T08:00:00.000Z The Sun 19
## 1024 DailyMirror 2020-01-02T08:00:00.000Z The Mirror 0
## 1025 MetroUK 2020-01-02T07:56:49.000Z Metro 2
## 1026 guardian 2020-01-02T07:55:45.000Z The Guardian 18
## 1027 EveningStandard 2020-01-02T07:55:45.000Z Evening Standard 1
## 1028 TheSun 2020-01-02T07:52:46.000Z The Sun 8
## 1029 TheSun 2020-01-02T07:50:00.000Z The Sun 29
## 1030 thetimes 2020-01-02T07:49:51.000Z The Times 23
## 1031 EveningStandard 2020-01-02T07:49:49.000Z Evening Standard 1
## 1032 DailyMailUK 2020-01-02T07:46:16.000Z Daily Mail U.K. 1
## 1033 guardian 2020-01-02T07:45:51.000Z The Guardian 13
## 1034 EveningStandard 2020-01-02T07:45:50.000Z Evening Standard 0
## 1035 TheSun 2020-01-02T07:42:55.000Z The Sun 4
## 1036 DailyMirror 2020-01-02T07:41:51.000Z The Mirror 2
## 1037 DailyMirror 2020-01-02T07:41:00.000Z The Mirror 0
## 1038 TheSun 2020-01-02T07:40:00.000Z The Sun 14
## 1039 DailyMirror 2020-01-02T07:39:00.000Z The Mirror 1
## 1040 guardian 2020-01-02T07:35:56.000Z The Guardian 29
## 1041 guardian 2020-01-02T07:35:55.000Z The Guardian 31
## 1042 guardian 2020-01-02T07:35:55.000Z The Guardian 5
## 1043 guardian 2020-01-02T07:35:54.000Z The Guardian 127
## 1044 TheSun 2020-01-02T07:32:53.000Z The Sun 1
## 1045 Telegraph 2020-01-02T07:31:12.000Z The Telegraph 10
## 1046 TheSun 2020-01-02T07:30:00.000Z The Sun 3
## 1047 EveningStandard 2020-01-02T07:29:59.000Z Evening Standard 0
## 1048 DailyMailUK 2020-01-02T07:29:03.000Z Daily Mail U.K. 1
## 1049 DailyMirror 2020-01-02T07:29:00.000Z The Mirror 2
## 1050 MetroUK 2020-01-02T07:28:53.000Z Metro 1
## 1051 guardian 2020-01-02T07:25:04.000Z The Guardian 25
## 1052 MetroUK 2020-01-02T07:24:04.000Z Metro 6
## 1053 DailyMirror 2020-01-02T07:22:50.000Z The Mirror 12
## 1054 DailyMirror 2020-01-02T07:22:45.000Z The Mirror 2
## 1055 thetimes 2020-01-02T07:21:41.000Z The Times 9
## 1056 TheSun 2020-01-02T07:20:00.000Z The Sun 4
## 1057 DailyMirror 2020-01-02T07:18:21.000Z The Mirror 5
## 1058 DailyMirror 2020-01-02T07:17:56.000Z The Mirror 2
## 1059 DailyMailUK 2020-01-02T07:16:59.000Z Daily Mail U.K. 3
## 1060 guardian 2020-01-02T07:14:50.000Z The Guardian 42
## 1061 EveningStandard 2020-01-02T07:14:11.000Z Evening Standard 2
## 1062 DailyMirror 2020-01-02T07:11:51.000Z The Mirror 1
## 1063 TheSun 2020-01-02T07:10:14.000Z The Sun 1
## 1064 TheSun 2020-01-02T07:10:00.000Z The Sun 4
## 1065 DailyMirror 2020-01-02T07:06:11.000Z The Mirror 5
## 1066 DailyMirror 2020-01-02T07:02:49.000Z The Mirror 3
## 1067 thetimes 2020-01-02T07:00:39.000Z The Times 12
## 1068 Telegraph 2020-01-02T07:00:36.000Z The Telegraph 4
## 1069 MetroUK 2020-01-02T07:00:05.000Z Metro 2
## 1070 TheSun 2020-01-02T07:00:00.000Z The Sun 13
## 1071 DailyMirror 2020-01-02T06:59:23.000Z The Mirror 1
## 1072 EveningStandard 2020-01-02T06:57:38.000Z Evening Standard 3
## 1073 guardian 2020-01-02T06:48:21.000Z The Guardian 71
## 1074 EveningStandard 2020-01-02T06:41:45.000Z Evening Standard 0
## 1075 DailyMirror 2020-01-02T06:41:00.000Z The Mirror 0
## 1076 thetimes 2020-01-02T06:40:50.000Z The Times 13
## 1077 TheSun 2020-01-02T06:40:47.000Z The Sun 0
## 1078 TheSun 2020-01-02T06:40:00.000Z The Sun 43
## 1079 DailyMirror 2020-01-02T06:38:47.000Z The Mirror 24
## 1080 guardian 2020-01-02T06:34:53.000Z The Guardian 19
## 1081 Telegraph 2020-01-02T06:31:03.000Z The Telegraph 258
## 1082 DailyMirror 2020-01-02T06:31:00.000Z The Mirror 2
## 1083 MetroUK 2020-01-02T06:30:02.000Z Metro 3
## 1084 EveningStandard 2020-01-02T06:26:02.000Z Evening Standard 1
## 1085 guardian 2020-01-02T06:23:49.000Z The Guardian 16
## 1086 guardian 2020-01-02T06:23:48.000Z The Guardian 18
## 1087 guardian 2020-01-02T06:23:47.000Z The Guardian 39
## 1088 thetimes 2020-01-02T06:21:02.000Z The Times 15
## 1089 TheSun 2020-01-02T06:20:59.000Z The Sun 1
## 1090 TheSun 2020-01-02T06:20:00.000Z The Sun 27
## 1091 DailyMirror 2020-01-02T06:09:29.000Z The Mirror 7
## 1092 EveningStandard 2020-01-02T06:09:11.000Z Evening Standard 0
## 1093 Telegraph 2020-01-02T06:00:43.000Z The Telegraph 25
## 1094 thetimes 2020-01-02T06:00:42.000Z The Times 9
## 1095 TheSun 2020-01-02T06:00:39.000Z The Sun 6
## 1096 TheSun 2020-01-02T06:00:00.000Z The Sun 3
## 1097 EveningStandard 2020-01-02T05:51:47.000Z Evening Standard 1
## 1098 guardian 2020-01-02T05:48:31.000Z The Guardian 26
## 1099 TheSun 2020-01-02T05:40:23.000Z The Sun 1
## 1100 TheSun 2020-01-02T05:40:00.000Z The Sun 16
## 1101 guardian 2020-01-02T05:38:27.000Z The Guardian 87
## 1102 EveningStandard 2020-01-02T05:32:15.000Z Evening Standard 2
## 1103 guardian 2020-01-02T05:32:14.000Z The Guardian 91
## 1104 DailyMirror 2020-01-02T05:32:00.000Z The Mirror 6
## 1105 DailyMirror 2020-01-02T05:31:00.000Z The Mirror 0
## 1106 DailyMirror 2020-01-02T05:28:56.000Z The Mirror 3
## 1107 guardian 2020-01-02T05:26:13.000Z The Guardian 23
## 1108 DailyMirror 2020-01-02T05:21:22.000Z The Mirror 2
## 1109 TheSun 2020-01-02T05:20:55.000Z The Sun 2
## 1110 TheSun 2020-01-02T05:20:00.000Z The Sun 39
## 1111 EveningStandard 2020-01-02T05:13:56.000Z Evening Standard 2
## 1112 guardian 2020-01-02T05:11:00.000Z The Guardian 14
## 1113 DailyMirror 2020-01-02T05:10:44.000Z The Mirror 1
## 1114 TheSun 2020-01-02T05:01:04.000Z The Sun 0
## 1115 TheSun 2020-01-02T05:00:00.000Z The Sun 19
## 1116 EveningStandard 2020-01-02T04:56:05.000Z Evening Standard 1
## 1117 TheSun 2020-01-02T04:40:12.000Z The Sun 1
## 1118 TheSun 2020-01-02T04:40:00.000Z The Sun 8
## 1119 EveningStandard 2020-01-02T04:37:12.000Z Evening Standard 0
## 1120 DailyMirror 2020-01-02T04:32:00.000Z The Mirror 0
## 1121 DailyMirror 2020-01-02T04:31:00.000Z The Mirror 0
## 1122 TheSun 2020-01-02T04:20:30.000Z The Sun 7
## 1123 TheSun 2020-01-02T04:20:00.000Z The Sun 5
## 1124 DailyMirror 2020-01-02T04:18:25.000Z The Mirror 3
## 1125 guardian 2020-01-02T04:05:15.000Z The Guardian 411
## 1126 EveningStandard 2020-01-02T04:03:53.000Z Evening Standard 1
## 1127 TheSun 2020-01-02T04:00:56.000Z The Sun 3
## 1128 TheSun 2020-01-02T04:00:00.000Z The Sun 4
## 1129 DailyMirror 2020-01-02T03:49:02.000Z The Mirror 4
## 1130 TheSun 2020-01-02T03:40:14.000Z The Sun 4
## 1131 TheSun 2020-01-02T03:40:00.000Z The Sun 11
## 1132 guardian 2020-01-02T03:36:58.000Z The Guardian 41
## 1133 guardian 2020-01-02T03:34:38.000Z The Guardian 133
## 1134 DailyMirror 2020-01-02T03:31:00.000Z The Mirror 1
## 1135 DailyMirror 2020-01-02T03:24:00.000Z The Mirror 1
## 1136 TheSun 2020-01-02T03:20:49.000Z The Sun 3
## 1137 TheSun 2020-01-02T03:20:00.000Z The Sun 7
## 1138 guardian 2020-01-02T03:17:30.000Z The Guardian 1516
## 1139 DailyMirror 2020-01-02T03:10:58.000Z The Mirror 2
## 1140 EveningStandard 2020-01-02T03:06:48.000Z Evening Standard 0
## 1141 TheSun 2020-01-02T03:00:55.000Z The Sun 4
## 1142 TheSun 2020-01-02T03:00:00.000Z The Sun 21
## 1143 guardian 2020-01-02T02:45:59.000Z The Guardian 30
## 1144 TheSun 2020-01-02T02:40:17.000Z The Sun 2
## 1145 TheSun 2020-01-02T02:40:00.000Z The Sun 61
## 1146 EveningStandard 2020-01-02T02:37:17.000Z Evening Standard 0
## 1147 DailyMirror 2020-01-02T02:24:00.000Z The Mirror 0
## 1148 TheSun 2020-01-02T02:20:35.000Z The Sun 3
## 1149 TheSun 2020-01-02T02:20:00.000Z The Sun 26
## 1150 DailyMirror 2020-01-02T02:13:10.000Z The Mirror 8
## 1151 DailyMirror 2020-01-02T02:11:46.000Z The Mirror 12
## 1152 guardian 2020-01-02T02:06:02.000Z The Guardian 8
## 1153 TheSun 2020-01-02T02:00:55.000Z The Sun 4
## 1154 TheSun 2020-01-02T02:00:00.000Z The Sun 9
## 1155 guardian 2020-01-02T01:55:44.000Z The Guardian 342
## 1156 DailyMirror 2020-01-02T01:51:59.000Z The Mirror 2
## 1157 guardian 2020-01-02T01:51:06.000Z The Guardian 19
## 1158 EveningStandard 2020-01-02T01:45:28.000Z Evening Standard 1
## 1159 guardian 2020-01-02T01:45:05.000Z The Guardian 45
## 1160 TheSun 2020-01-02T01:40:34.000Z The Sun 0
## 1161 TheSun 2020-01-02T01:40:00.000Z The Sun 4
## 1162 DailyMirror 2020-01-02T01:24:00.000Z The Mirror 4
## 1163 DailyMirror 2020-01-02T01:20:50.000Z The Mirror 20
## 1164 TheSun 2020-01-02T01:20:12.000Z The Sun 5
## 1165 TheSun 2020-01-02T01:20:00.000Z The Sun 11
## 1166 EveningStandard 2020-01-02T01:19:15.000Z Evening Standard 0
## 1167 DailyMirror 2020-01-02T01:18:00.000Z The Mirror 3
## 1168 DailyMirror 2020-01-02T01:00:44.000Z The Mirror 4
## 1169 TheSun 2020-01-02T01:00:31.000Z The Sun 1
## 1170 TheSun 2020-01-02T01:00:00.000Z The Sun 7
## 1171 guardian 2020-01-02T00:45:27.000Z The Guardian 4
## 1172 guardian 2020-01-02T00:45:26.000Z The Guardian 22
## 1173 EveningStandard 2020-01-02T00:44:48.000Z Evening Standard 2
## 1174 TheSun 2020-01-02T00:40:53.000Z The Sun 1
## 1175 TheSun 2020-01-02T00:40:00.000Z The Sun 77
## 1176 guardian 2020-01-02T00:31:03.000Z The Guardian 12
## 1177 EveningStandard 2020-01-02T00:29:03.000Z Evening Standard 0
## 1178 DailyMirror 2020-01-02T00:23:23.000Z The Mirror 3
## 1179 DailyMirror 2020-01-02T00:22:34.000Z The Mirror 4
## 1180 DailyMirror 2020-01-02T00:21:35.000Z The Mirror 3
## 1181 DailyMirror 2020-01-02T00:20:40.000Z The Mirror 0
## 1182 TheSun 2020-01-02T00:20:12.000Z The Sun 4
## 1183 TheSun 2020-01-02T00:20:00.000Z The Sun 24
## 1184 guardian 2020-01-02T00:19:54.000Z The Guardian 257
## 1185 guardian 2020-01-02T00:19:53.000Z The Guardian 28
## 1186 DailyMirror 2020-01-02T00:19:41.000Z The Mirror 4
## 1187 DailyMirror 2020-01-02T00:19:06.000Z The Mirror 0
## 1188 DailyMirror 2020-01-02T00:18:16.000Z The Mirror 2
## 1189 DailyMirror 2020-01-02T00:18:00.000Z The Mirror 5
## 1190 DailyMirror 2020-01-02T00:17:45.000Z The Mirror 3
## 1191 EveningStandard 2020-01-02T00:13:19.000Z Evening Standard 0
## 1192 DailyMirror 2020-01-02T00:04:14.000Z The Mirror 4
## 1193 TheSun 2020-01-02T00:00:33.000Z The Sun 5
## 1194 TheSun 2020-01-02T00:00:00.000Z The Sun 10
## 1195 DailyMirror 2020-01-01T23:57:51.000Z The Mirror 3
## 1196 EveningStandard 2020-01-01T23:57:35.000Z Evening Standard 2
## 1197 TheSun 2020-01-01T23:50:00.000Z The Sun 5
## 1198 DailyMirror 2020-01-01T23:49:19.000Z The Mirror 2
## 1199 guardian 2020-01-01T23:40:53.000Z The Guardian 12
## 1200 EveningStandard 2020-01-01T23:40:52.000Z Evening Standard 0
## 1201 TheSun 2020-01-01T23:40:00.000Z The Sun 29
## 1202 DailyMirror 2020-01-01T23:36:34.000Z The Mirror 9
## 1203 DailyMirror 2020-01-01T23:34:00.000Z The Mirror 7
## 1204 guardian 2020-01-01T23:31:06.000Z The Guardian 3
## 1205 Telegraph 2020-01-01T23:30:23.000Z The Telegraph 5
## 1206 TheSun 2020-01-01T23:30:00.000Z The Sun 20
## 1207 DailyMirror 2020-01-01T23:30:00.000Z The Mirror 1
## 1208 thetimes 2020-01-01T23:27:27.000Z The Times 10
## 1209 EveningStandard 2020-01-01T23:24:26.000Z Evening Standard 0
## 1210 guardian 2020-01-01T23:22:29.000Z The Guardian 45
## 1211 DailyMirror 2020-01-01T23:22:00.000Z The Mirror 4
## 1212 DailyMailUK 2020-01-01T23:20:04.000Z Daily Mail U.K. 4
## 1213 TheSun 2020-01-01T23:20:00.000Z The Sun 6
## 1214 DailyMirror 2020-01-01T23:18:00.000Z The Mirror 21
## 1215 Telegraph 2020-01-01T23:15:38.000Z The Telegraph 1
## 1216 TheSun 2020-01-01T23:10:00.000Z The Sun 33
## 1217 guardian 2020-01-01T23:09:42.000Z The Guardian 49
## 1218 EveningStandard 2020-01-01T23:06:45.000Z Evening Standard 0
## 1219 DailyMirror 2020-01-01T23:05:00.000Z The Mirror 5
## 1220 Telegraph 2020-01-01T23:00:57.000Z The Telegraph 15
## 1221 DailyMailUK 2020-01-01T23:00:04.000Z Daily Mail U.K. 8
## 1222 DailyMirror 2020-01-01T23:00:00.000Z The Mirror 4
## 1223 TheSun 2020-01-01T23:00:00.000Z The Sun 29
## 1224 DailyMirror 2020-01-01T22:58:31.000Z The Mirror 3
## 1225 DailyMirror 2020-01-01T22:58:18.000Z The Mirror 6
## 1226 DailyMirror 2020-01-01T22:53:48.000Z The Mirror 1
## 1227 guardian 2020-01-01T22:50:59.000Z The Guardian 9
## 1228 EveningStandard 2020-01-01T22:50:00.000Z Evening Standard 0
## 1229 TheSun 2020-01-01T22:50:00.000Z The Sun 15
## 1230 thetimes 2020-01-01T22:49:07.000Z The Times 22
## 1231 Telegraph 2020-01-01T22:46:05.000Z The Telegraph 2
## 1232 TheSun 2020-01-01T22:42:06.000Z The Sun 3
## 1233 guardian 2020-01-01T22:41:54.000Z The Guardian 7
## 1234 guardian 2020-01-01T22:41:53.000Z The Guardian 37
## 1235 TheSun 2020-01-01T22:40:51.000Z The Sun 5
## 1236 DailyMailUK 2020-01-01T22:40:05.000Z Daily Mail U.K. 5
## 1237 TheSun 2020-01-01T22:40:00.000Z The Sun 7
## 1238 DailyMirror 2020-01-01T22:40:00.000Z The Mirror 2
## 1239 DailyMirror 2020-01-01T22:39:54.000Z The Mirror 35
## 1240 DailyMirror 2020-01-01T22:34:00.000Z The Mirror 4
## 1241 EveningStandard 2020-01-01T22:33:15.000Z Evening Standard 1
## 1242 DailyMirror 2020-01-01T22:32:56.000Z The Mirror 8
## 1243 Telegraph 2020-01-01T22:30:24.000Z The Telegraph 3
## 1244 thetimes 2020-01-01T22:30:22.000Z The Times 4
## 1245 guardian 2020-01-01T22:30:02.000Z The Guardian 21
## 1246 TheSun 2020-01-01T22:30:00.000Z The Sun 2
## 1247 DailyMirror 2020-01-01T22:30:00.000Z The Mirror 0
## 1248 DailyMirror 2020-01-01T22:28:00.000Z The Mirror 3
## 1249 DailyMirror 2020-01-01T22:27:00.000Z The Mirror 4
## 1250 DailyMirror 2020-01-01T22:23:05.000Z The Mirror 7
## 1251 TheSun 2020-01-01T22:22:27.000Z The Sun 4
## 1252 DailyMirror 2020-01-01T22:22:01.000Z The Mirror 1
## 1253 DailyMirror 2020-01-01T22:21:30.000Z The Mirror 2
## 1254 DailyMailUK 2020-01-01T22:21:01.000Z Daily Mail U.K. 2
## 1255 TheSun 2020-01-01T22:20:00.000Z The Sun 21
## 1256 DailyMirror 2020-01-01T22:20:00.000Z The Mirror 2
## 1257 DailyMirror 2020-01-01T22:19:24.000Z The Mirror 2
## 1258 DailyMirror 2020-01-01T22:18:54.000Z The Mirror 1
## 1259 guardian 2020-01-01T22:18:30.000Z The Guardian 6
## 1260 DailyMailUK 2020-01-01T22:18:01.000Z Daily Mail U.K. 5
## 1261 DailyMirror 2020-01-01T22:18:00.000Z The Mirror 0
## 1262 EveningStandard 2020-01-01T22:17:32.000Z Evening Standard 0
## 1263 DailyMirror 2020-01-01T22:17:00.000Z The Mirror 1
## 1264 Telegraph 2020-01-01T22:15:38.000Z The Telegraph 2
## 1265 thetimes 2020-01-01T22:13:40.000Z The Times 5
## 1266 TheSun 2020-01-01T22:12:36.000Z The Sun 3
## 1267 TheSun 2020-01-01T22:10:00.000Z The Sun 11
## 1268 DailyMirror 2020-01-01T22:08:25.000Z The Mirror 4
## 1269 DailyMailUK 2020-01-01T22:07:51.000Z Daily Mail U.K. 9
## 1270 guardian 2020-01-01T22:03:51.000Z The Guardian 131
## 1271 TheSun 2020-01-01T22:02:46.000Z The Sun 2
## 1272 EveningStandard 2020-01-01T22:01:47.000Z Evening Standard 0
## 1273 Telegraph 2020-01-01T22:00:57.000Z The Telegraph 26
## 1274 Telegraph 2020-01-01T22:00:46.000Z The Telegraph 6
## 1275 MetroUK 2020-01-01T22:00:08.000Z Metro 6
## 1276 DailyMailUK 2020-01-01T22:00:03.000Z Daily Mail U.K. 5
## 1277 TheSun 2020-01-01T22:00:00.000Z The Sun 13
## 1278 guardian 2020-01-01T21:58:43.000Z The Guardian 4
## 1279 thetimes 2020-01-01T21:56:48.000Z The Times 2
## 1280 DailyMirror 2020-01-01T21:53:00.000Z The Mirror 4
## 1281 TheSun 2020-01-01T21:52:53.000Z The Sun 7
## 1282 guardian 2020-01-01T21:51:57.000Z The Guardian 8
## 1283 TheSun 2020-01-01T21:50:00.000Z The Sun 8
## 1284 DailyMirror 2020-01-01T21:48:44.000Z The Mirror 9
## 1285 Telegraph 2020-01-01T21:46:01.000Z The Telegraph 8
## 1286 EveningStandard 2020-01-01T21:45:57.000Z Evening Standard 3
## 1287 DailyMirror 2020-01-01T21:43:08.000Z The Mirror 7
## 1288 TheSun 2020-01-01T21:42:59.000Z The Sun 1
## 1289 DailyMailUK 2020-01-01T21:40:08.000Z Daily Mail U.K. 3
## 1290 TheSun 2020-01-01T21:40:00.000Z The Sun 9
## 1291 thetimes 2020-01-01T21:39:07.000Z The Times 6
## 1292 DailyMirror 2020-01-01T21:35:00.000Z The Mirror 0
## 1293 TheSun 2020-01-01T21:32:11.000Z The Sun 3
## 1294 Telegraph 2020-01-01T21:30:19.000Z The Telegraph 5
## 1295 EveningStandard 2020-01-01T21:30:12.000Z Evening Standard 0
## 1296 MetroUK 2020-01-01T21:30:04.000Z Metro 9
## 1297 TheSun 2020-01-01T21:30:00.000Z The Sun 10
## 1298 DailyMirror 2020-01-01T21:29:00.000Z The Mirror 2
## 1299 guardian 2020-01-01T21:27:15.000Z The Guardian 42
## 1300 DailyMirror 2020-01-01T21:26:00.000Z The Mirror 0
## 1301 Telegraph 2020-01-01T21:23:52.000Z The Telegraph 16
## 1302 DailyMailUK 2020-01-01T21:23:03.000Z Daily Mail U.K. 0
## 1303 TheSun 2020-01-01T21:22:21.000Z The Sun 3
## 1304 TheSun 2020-01-01T21:20:00.000Z The Sun 23
## 1305 DailyMirror 2020-01-01T21:17:00.000Z The Mirror 0
## 1306 DailyMirror 2020-01-01T21:16:09.000Z The Mirror 8
## 1307 Telegraph 2020-01-01T21:15:31.000Z The Telegraph 6
## 1308 EveningStandard 2020-01-01T21:14:20.000Z Evening Standard 0
## 1309 TheSun 2020-01-01T21:12:30.000Z The Sun 1
## 1310 TheSun 2020-01-01T21:11:16.000Z The Sun 10
## 1311 TheSun 2020-01-01T21:10:00.000Z The Sun 21
## 1312 guardian 2020-01-01T21:08:35.000Z The Guardian 8
## 1313 TheSun 2020-01-01T21:02:42.000Z The Sun 2
## 1314 thetimes 2020-01-01T21:01:46.000Z The Times 5
## 1315 Telegraph 2020-01-01T21:00:51.000Z The Telegraph 22
## 1316 MetroUK 2020-01-01T21:00:10.000Z Metro 18
## 1317 DailyMailUK 2020-01-01T21:00:06.000Z Daily Mail U.K. 12
## 1318 TheSun 2020-01-01T21:00:00.000Z The Sun 42
## 1319 guardian 2020-01-01T20:59:32.000Z The Guardian 35
## 1320 EveningStandard 2020-01-01T20:58:45.000Z Evening Standard 7
## 1321 DailyMirror 2020-01-01T20:57:00.000Z The Mirror 1
## 1322 DailyMirror 2020-01-01T20:53:00.000Z The Mirror 0
## 1323 TheSun 2020-01-01T20:52:52.000Z The Sun 3
## 1324 TheSun 2020-01-01T20:50:00.000Z The Sun 15
## 1325 TheSun 2020-01-01T20:48:40.000Z The Sun 1
## 1326 Telegraph 2020-01-01T20:45:15.000Z The Telegraph 14
## 1327 TheSun 2020-01-01T20:42:16.000Z The Sun 4
## 1328 thetimes 2020-01-01T20:40:18.000Z The Times 16
## 1329 DailyMailUK 2020-01-01T20:40:02.000Z Daily Mail U.K. 4
## 1330 TheSun 2020-01-01T20:40:00.000Z The Sun 14
## 1331 guardian 2020-01-01T20:38:19.000Z The Guardian 6
## 1332 EveningStandard 2020-01-01T20:34:21.000Z Evening Standard 2
## 1333 DailyMirror 2020-01-01T20:32:27.000Z The Mirror 1
## 1334 TheSun 2020-01-01T20:32:24.000Z The Sun 0
## 1335 DailyMirror 2020-01-01T20:31:22.000Z The Mirror 2
## 1336 DailyMirror 2020-01-01T20:31:00.000Z The Mirror 3
## 1337 MetroUK 2020-01-01T20:30:11.000Z Metro 2
## 1338 TheSun 2020-01-01T20:30:00.000Z The Sun 7
## 1339 DailyMirror 2020-01-01T20:29:00.000Z The Mirror 0
## 1340 DailyMirror 2020-01-01T20:29:00.000Z The Mirror 0
## 1341 Telegraph 2020-01-01T20:28:05.000Z The Telegraph 31
## 1342 DailyMirror 2020-01-01T20:26:28.000Z The Mirror 2
## 1343 DailyMirror 2020-01-01T20:26:00.000Z The Mirror 10
## 1344 DailyMirror 2020-01-01T20:24:00.000Z The Mirror 2
## 1345 DailyMirror 2020-01-01T20:22:50.000Z The Mirror 7
## 1346 TheSun 2020-01-01T20:22:39.000Z The Sun 1
## 1347 DailyMailUK 2020-01-01T20:21:05.000Z Daily Mail U.K. 5
## 1348 thetimes 2020-01-01T20:20:43.000Z The Times 8
## 1349 TheSun 2020-01-01T20:20:00.000Z The Sun 7
## 1350 guardian 2020-01-01T20:19:44.000Z The Guardian 14
## 1351 DailyMirror 2020-01-01T20:19:00.000Z The Mirror 3
## 1352 DailyMirror 2020-01-01T20:18:00.000Z The Mirror 2
## 1353 EveningStandard 2020-01-01T20:17:44.000Z Evening Standard 1
## 1354 DailyMirror 2020-01-01T20:16:00.000Z The Mirror 1
## 1355 Telegraph 2020-01-01T20:15:51.000Z The Telegraph 5
## 1356 TheSun 2020-01-01T20:12:51.000Z The Sun 10
## 1357 EveningStandard 2020-01-01T20:10:54.000Z Evening Standard 0
## 1358 guardian 2020-01-01T20:10:09.000Z The Guardian 5
## 1359 guardian 2020-01-01T20:10:08.000Z The Guardian 3
## 1360 EveningStandard 2020-01-02T16:56:12.000Z Evening Standard 3
## 1361 MetroUK 2020-01-02T16:55:55.000Z Metro 1
## 1362 DailyMailUK 2020-01-02T16:55:07.000Z Daily Mail U.K. 6
## 1363 DailyMirror 2020-01-02T16:54:23.000Z The Mirror 3
## 1364 TheSun 2020-01-02T16:52:39.000Z The Sun 4
## 1365 guardian 2020-01-02T16:52:39.000Z The Guardian 16
## 1366 DailyMirror 2020-01-02T16:52:26.000Z The Mirror 5
## 1367 EveningStandard 2020-01-02T16:51:41.000Z Evening Standard 0
## 1368 DailyMailUK 2020-01-02T16:51:13.000Z Daily Mail U.K. 8
## 1369 DailyMirror 2020-01-02T16:50:10.000Z The Mirror 3
## 1370 DailyMailUK 2020-01-02T16:50:05.000Z Daily Mail U.K. 3
## 1371 DailyMirror 2020-01-02T16:50:00.000Z The Mirror 4
## 1372 TheSun 2020-01-02T16:50:00.000Z The Sun 12
## 1373 thetimes 2020-01-02T16:49:44.000Z The Times 2
## 1374 DailyMirror 2020-01-02T16:49:00.000Z The Mirror 2
## 1375 DailyMirror 2020-01-02T16:45:25.000Z The Mirror 2
## 1376 Telegraph 2020-01-02T16:45:19.000Z The Telegraph 10
## 1377 EveningStandard 2020-01-02T16:42:51.000Z Evening Standard 0
## 1378 TheSun 2020-01-02T16:42:50.000Z The Sun 5
## 1379 guardian 2020-01-02T16:42:50.000Z The Guardian 14
## 1380 TheSun 2020-01-02T16:40:00.000Z The Sun 21
## 1381 DailyMailUK 2020-01-02T16:39:09.000Z Daily Mail U.K. 8
## 1382 DailyMirror 2020-01-02T16:37:53.000Z The Mirror 1
## 1383 EveningStandard 2020-01-02T16:34:46.000Z Evening Standard 1
## 1384 DailyMailUK 2020-01-02T16:34:24.000Z Daily Mail U.K. 7
## 1385 DailyMirror 2020-01-02T16:33:54.000Z The Mirror 0
## 1386 TheSun 2020-01-02T16:32:52.000Z The Sun 1
## 1387 DailyMailUK 2020-01-02T16:32:42.000Z Daily Mail U.K. 4
## 1388 DailyMailUK 2020-01-02T16:32:30.000Z Daily Mail U.K. 1
## 1389 guardian 2020-01-02T16:31:46.000Z The Guardian 3
## 1390 guardian 2020-01-02T16:31:45.000Z The Guardian 11
## 1391 Telegraph 2020-01-02T16:31:03.000Z The Telegraph 2
## 1392 MetroUK 2020-01-02T16:30:15.000Z Metro 3
## 1393 TheSun 2020-01-02T16:30:00.000Z The Sun 36
## 1394 DailyMirror 2020-01-02T16:30:00.000Z The Mirror 0
## 1395 thetimes 2020-01-02T16:29:54.000Z The Times 5
## 1396 EveningStandard 2020-01-02T16:25:58.000Z Evening Standard 1
## 1397 Telegraph 2020-01-02T16:24:33.000Z The Telegraph 2
## 1398 MetroUK 2020-01-02T16:24:29.000Z Metro 0
## 1399 DailyMailUK 2020-01-02T16:24:28.000Z Daily Mail U.K. 1
## 1400 guardian 2020-01-02T16:23:58.000Z The Guardian 15
## 1401 DailyMailUK 2020-01-02T16:23:38.000Z Daily Mail U.K. 12
## 1402 DailyMirror 2020-01-02T16:23:32.000Z The Mirror 7
## 1403 TheSun 2020-01-02T16:23:02.000Z The Sun 1
## 1404 DailyMirror 2020-01-02T16:22:00.000Z The Mirror 5
## 1405 DailyMailUK 2020-01-02T16:21:11.000Z Daily Mail U.K. 1
## 1406 TheSun 2020-01-02T16:20:00.000Z The Sun 5
## 1407 TheSun 2020-01-02T16:19:44.000Z The Sun 4
## 1408 DailyMirror 2020-01-02T16:17:56.000Z The Mirror 4
## 1409 EveningStandard 2020-01-02T16:16:30.000Z Evening Standard 0
## 1410 DailyMirror 2020-01-02T16:15:25.000Z The Mirror 0
## 1411 DailyMirror 2020-01-02T16:15:01.000Z The Mirror 8
## 1412 DailyMirror 2020-01-02T16:15:00.000Z The Mirror 0
## 1413 MetroUK 2020-01-02T16:15:00.000Z Metro 7
## 1414 guardian 2020-01-02T16:13:52.000Z The Guardian 6
## 1415 DailyMirror 2020-01-02T16:13:00.000Z The Mirror 1
## 1416 TheSun 2020-01-02T16:12:53.000Z The Sun 3
## 1417 Telegraph 2020-01-02T16:10:21.000Z The Telegraph 1
## 1418 DailyMailUK 2020-01-02T16:10:03.000Z Daily Mail U.K. 5
## 1419 TheSun 2020-01-02T16:10:00.000Z The Sun 9
## 1420 DailyMirror 2020-01-02T16:10:00.000Z The Mirror 7
## 1421 EveningStandard 2020-01-02T16:08:57.000Z Evening Standard 6
## 1422 guardian 2020-01-02T16:08:08.000Z The Guardian 1
## 1423 guardian 2020-01-02T16:08:07.000Z The Guardian 5
## 1424 guardian 2020-01-02T16:08:05.000Z The Guardian 1
## 1425 EveningStandard 2020-01-02T16:06:57.000Z Evening Standard 1
## 1426 DailyMirror 2020-01-02T16:06:21.000Z The Mirror 8
## 1427 DailyMailUK 2020-01-02T16:05:04.000Z Daily Mail U.K. 14
## 1428 MetroUK 2020-01-02T16:04:14.000Z Metro 2
## 1429 MetroUK 2020-01-02T16:03:15.000Z Metro 13
## 1430 thetimes 2020-01-02T16:02:24.000Z The Times 10
## 1431 TheSun 2020-01-02T16:02:20.000Z The Sun 1
## 1432 guardian 2020-01-02T16:01:34.000Z The Guardian 17
## 1433 thetimes 2020-01-02T16:00:30.000Z The Times 10
## 1434 MetroUK 2020-01-02T16:00:14.000Z Metro 0
## 1435 EveningStandard 2020-01-02T16:00:01.000Z Evening Standard 1
## 1436 TheSun 2020-01-02T16:00:00.000Z The Sun 132
## 1437 DailyMirror 2020-01-02T15:59:40.000Z The Mirror 0
## 1438 DailyMailUK 2020-01-02T15:59:04.000Z Daily Mail U.K. 9
## 1439 DailyMirror 2020-01-02T15:58:36.000Z The Mirror 1
## 1440 EveningStandard 2020-01-02T15:57:28.000Z Evening Standard 1
## 1441 DailyMirror 2020-01-02T15:57:00.000Z The Mirror 1
## 1442 Telegraph 2020-01-02T15:53:38.000Z The Telegraph 31
## 1443 DailyMirror 2020-01-02T15:53:17.000Z The Mirror 1
## 1444 TheSun 2020-01-02T15:52:35.000Z The Sun 4
## 1445 DailyMirror 2020-01-02T15:52:19.000Z The Mirror 5
## 1446 DailyMailUK 2020-01-02T15:52:06.000Z Daily Mail U.K. 0
## 1447 DailyMirror 2020-01-02T15:51:26.000Z The Mirror 2
## 1448 EveningStandard 2020-01-02T15:50:30.000Z Evening Standard 10
## 1449 DailyMirror 2020-01-02T15:50:00.000Z The Mirror 2
## 1450 TheSun 2020-01-02T15:50:00.000Z The Sun 8
## 1451 DailyMirror 2020-01-02T15:49:40.000Z The Mirror 1
## 1452 guardian 2020-01-02T15:47:32.000Z The Guardian 14
## 1453 DailyMirror 2020-01-02T15:46:35.000Z The Mirror 1
## 1454 DailyMirror 2020-01-02T15:46:03.000Z The Mirror 2
## 1455 DailyMirror 2020-01-02T15:45:03.000Z The Mirror 4
## 1456 EveningStandard 2020-01-02T15:43:49.000Z Evening Standard 2
## 1457 TheSun 2020-01-02T15:43:00.000Z The Sun 1
## 1458 guardian 2020-01-02T15:41:55.000Z The Guardian 4
## 1459 guardian 2020-01-02T15:41:54.000Z The Guardian 19
## 1460 guardian 2020-01-02T15:41:53.000Z The Guardian 6
## 1461 guardian 2020-01-02T15:41:03.000Z The Guardian 122
## 1462 DailyMailUK 2020-01-02T15:41:02.000Z Daily Mail U.K. 9
## 1463 EveningStandard 2020-01-02T15:40:00.000Z Evening Standard 1
## 1464 TheSun 2020-01-02T15:40:00.000Z The Sun 28
## 1465 DailyMailUK 2020-01-02T15:36:30.000Z Daily Mail U.K. 21
## 1466 TheSun 2020-01-02T15:35:50.000Z The Sun 0
## 1467 DailyMirror 2020-01-02T15:35:34.000Z The Mirror 5
## 1468 DailyMirror 2020-01-02T15:34:13.000Z The Mirror 7
## 1469 TheSun 2020-01-02T15:32:09.000Z The Sun 2
## 1470 DailyMailUK 2020-01-02T15:31:53.000Z Daily Mail U.K. 7
## 1471 Telegraph 2020-01-02T15:31:47.000Z The Telegraph 30
## 1472 Telegraph 2020-01-02T15:31:15.000Z The Telegraph 16
## 1473 MetroUK 2020-01-02T15:30:15.000Z Metro 1
## 1474 thetimes 2020-01-02T15:30:14.000Z The Times 5
## 1475 EveningStandard 2020-01-02T15:30:11.000Z Evening Standard 0
## 1476 DailyMailUK 2020-01-02T15:30:02.000Z Daily Mail U.K. 1
## 1477 TheSun 2020-01-02T15:30:00.000Z The Sun 6
## 1478 DailyMirror 2020-01-02T15:30:00.000Z The Mirror 0
## 1479 guardian 2020-01-02T15:27:10.000Z The Guardian 11
## 1480 DailyMailUK 2020-01-02T15:24:19.000Z Daily Mail U.K. 15
## 1481 EveningStandard 2020-01-02T15:24:14.000Z Evening Standard 0
## 1482 TheSun 2020-01-02T15:22:16.000Z The Sun 0
## 1483 DailyMailUK 2020-01-02T15:21:06.000Z Daily Mail U.K. 1
## 1484 DailyMirror 2020-01-02T15:20:31.000Z The Mirror 2
## 1485 DailyMirror 2020-01-02T15:20:02.000Z The Mirror 0
## 1486 TheSun 2020-01-02T15:20:00.000Z The Sun 18
## 1487 DailyMirror 2020-01-02T15:20:00.000Z The Mirror 7
## 1488 EveningStandard 2020-01-02T15:18:19.000Z Evening Standard 1
## 1489 DailyMirror 2020-01-02T15:14:57.000Z The Mirror 5
## 1490 guardian 2020-01-02T15:14:11.000Z The Guardian 39
## 1491 thetimes 2020-01-02T15:13:02.000Z The Times 1
## 1492 TheSun 2020-01-02T15:13:01.000Z The Sun 2
## 1493 thetimes 2020-01-02T15:12:19.000Z The Times 7
## 1494 DailyMirror 2020-01-02T15:11:00.000Z The Mirror 0
## 1495 MetroUK 2020-01-02T15:10:05.000Z Metro 1
## 1496 EveningStandard 2020-01-02T15:10:02.000Z Evening Standard 0
## 1497 TheSun 2020-01-02T15:10:00.000Z The Sun 12
## 1498 DailyMirror 2020-01-02T15:06:46.000Z The Mirror 1
## 1499 DailyMailUK 2020-01-02T15:05:11.000Z Daily Mail U.K. 26
## 1500 EveningStandard 2020-01-02T15:05:07.000Z Evening Standard 2
## 1501 DailyMirror 2020-01-02T15:05:01.000Z The Mirror 0
## 1502 DailyMirror 2020-01-02T15:03:26.000Z The Mirror 7
## 1503 guardian 2020-01-02T15:03:14.000Z The Guardian 16
## 1504 EveningStandard 2020-01-02T15:03:13.000Z Evening Standard 0
## 1505 DailyMailUK 2020-01-02T15:03:11.000Z Daily Mail U.K. 6
## 1506 TheSun 2020-01-02T15:02:10.000Z The Sun 4
## 1507 Telegraph 2020-01-02T15:01:14.000Z The Telegraph 4
## 1508 MetroUK 2020-01-02T15:00:10.000Z Metro 0
## 1509 EveningStandard 2020-01-02T15:00:06.000Z Evening Standard 0
## 1510 DailyMailUK 2020-01-02T15:00:01.000Z Daily Mail U.K. 2
## 1511 TheSun 2020-01-02T15:00:00.000Z The Sun 8
## 1512 DailyMirror 2020-01-02T14:57:57.000Z The Mirror 1
## 1513 DailyMirror 2020-01-02T14:57:56.000Z The Mirror 1
## 1514 DailyMirror 2020-01-02T14:57:46.000Z The Mirror 5
## 1515 thetimes 2020-01-02T14:56:07.000Z The Times 2
## 1516 Telegraph 2020-01-02T14:55:43.000Z The Telegraph 6
## 1517 DailyMailUK 2020-01-02T14:55:23.000Z Daily Mail U.K. 10
## 1518 TheSun 2020-01-02T14:52:13.000Z The Sun 0
## 1519 guardian 2020-01-02T14:52:11.000Z The Guardian 4
## 1520 DailyMirror 2020-01-02T14:51:42.000Z The Mirror 3
## 1521 DailyMirror 2020-01-02T14:51:34.000Z The Mirror 1
## 1522 EveningStandard 2020-01-02T14:51:09.000Z Evening Standard 4
## 1523 DailyMirror 2020-01-02T14:51:07.000Z The Mirror 5
## 1524 DailyMirror 2020-01-02T14:51:02.000Z The Mirror 2
## 1525 EveningStandard 2020-01-02T14:50:16.000Z Evening Standard 1
## 1526 TheSun 2020-01-02T14:50:12.000Z The Sun 3
## 1527 guardian 2020-01-02T14:50:12.000Z The Guardian 15
## 1528 Telegraph 2020-01-02T14:49:36.000Z The Telegraph 12
## 1529 MetroUK 2020-01-02T14:49:27.000Z Metro 1
## 1530 DailyMailUK 2020-01-02T14:49:07.000Z Daily Mail U.K. 18
## 1531 MetroUK 2020-01-02T14:49:03.000Z Metro 2
## 1532 MetroUK 2020-01-02T14:48:58.000Z Metro 2
## 1533 DailyMailUK 2020-01-02T14:46:33.000Z Daily Mail U.K. 6
## 1534 EveningStandard 2020-01-02T14:45:17.000Z Evening Standard 2
## 1535 EveningStandard 2020-01-02T14:43:18.000Z Evening Standard 3
## 1536 TheSun 2020-01-02T14:42:19.000Z The Sun 1
## 1537 DailyMailUK 2020-01-02T14:40:06.000Z Daily Mail U.K. 3
## 1538 TheSun 2020-01-02T14:40:00.000Z The Sun 7
## 1539 DailyMirror 2020-01-02T14:40:00.000Z The Mirror 4
## 1540 EveningStandard 2020-01-02T14:38:25.000Z Evening Standard 2
## 1541 guardian 2020-01-02T14:38:25.000Z The Guardian 5
## 1542 DailyMirror 2020-01-02T14:36:00.000Z The Mirror 2
## 1543 EveningStandard 2020-01-02T14:35:28.000Z Evening Standard 0
## 1544 thetimes 2020-01-02T14:33:11.000Z The Times 4
## 1545 thetimes 2020-01-02T14:33:11.000Z The Times 14
## 1546 TheSun 2020-01-02T14:32:27.000Z The Sun 2
## 1547 EveningStandard 2020-01-02T14:30:27.000Z Evening Standard 1
## 1548 MetroUK 2020-01-02T14:30:10.000Z Metro 17
## 1549 DailyMailUK 2020-01-02T14:30:06.000Z Daily Mail U.K. 0
## 1550 TheSun 2020-01-02T14:30:00.000Z The Sun 11
## 1551 guardian 2020-01-02T14:26:25.000Z The Guardian 23
## 1552 guardian 2020-01-02T14:26:24.000Z The Guardian 13
## 1553 DailyMirror 2020-01-02T14:26:22.000Z The Mirror 2
## 1554 EveningStandard 2020-01-02T14:25:31.000Z Evening Standard 0
## 1555 TheSun 2020-01-02T14:25:25.000Z The Sun 11
## 1556 TheSun 2020-01-02T14:22:36.000Z The Sun 4
## 1557 DailyMirror 2020-01-02T14:22:18.000Z The Mirror 1
## 1558 DailyMailUK 2020-01-02T14:21:02.000Z Daily Mail U.K. 0
## 1559 EveningStandard 2020-01-02T14:20:11.000Z Evening Standard 0
## 1560 guardian 2020-01-02T14:19:01.000Z The Guardian 37
## 1561 Telegraph 2020-01-02T14:16:06.000Z The Telegraph 7
## 1562 guardian 2020-01-02T14:16:02.000Z The Guardian 44
## 1563 EveningStandard 2020-01-02T14:15:05.000Z Evening Standard 0
## 1564 DailyMirror 2020-01-02T14:14:00.000Z The Mirror 4
## 1565 EveningStandard 2020-01-02T14:13:05.000Z Evening Standard 0
## 1566 TheSun 2020-01-02T14:12:08.000Z The Sun 3
## 1567 DailyMirror 2020-01-02T14:10:40.000Z The Mirror 3
## 1568 DailyMirror 2020-01-02T14:10:09.000Z The Mirror 3
## 1569 DailyMailUK 2020-01-02T14:10:05.000Z Daily Mail U.K. 1
## 1570 DailyMailUK 2020-01-02T14:10:03.000Z Daily Mail U.K. 4
## 1571 TheSun 2020-01-02T14:10:00.000Z The Sun 17
## 1572 EveningStandard 2020-01-02T14:06:14.000Z Evening Standard 1
## 1573 guardian 2020-01-02T14:05:49.000Z The Guardian 24
## 1574 DailyMirror 2020-01-02T14:05:00.000Z The Mirror 1
## 1575 DailyMailUK 2020-01-02T14:04:06.000Z Daily Mail U.K. 12
## 1576 guardian 2020-01-02T14:02:51.000Z The Guardian 15
## 1577 thetimes 2020-01-02T14:02:17.000Z The Times 2
## 1578 TheSun 2020-01-02T14:02:15.000Z The Sun 1
## 1579 DailyMirror 2020-01-02T14:01:49.000Z The Mirror 10
## 1580 Telegraph 2020-01-02T14:01:22.000Z The Telegraph 11
## 1581 Telegraph 2020-01-02T14:01:11.000Z The Telegraph 10
## 1582 MetroUK 2020-01-02T14:00:17.000Z Metro 0
## 1583 DailyMailUK 2020-01-02T14:00:06.000Z Daily Mail U.K. 1
## 1584 TheSun 2020-01-02T14:00:00.000Z The Sun 356
## 1585 EveningStandard 2020-01-02T14:00:00.000Z Evening Standard 1
## 1586 guardian 2020-01-02T13:58:07.000Z The Guardian 21
## 1587 DailyMailUK 2020-01-02T13:57:56.000Z Daily Mail U.K. 5
## 1588 DailyMirror 2020-01-02T13:57:13.000Z The Mirror 3
## 1589 DailyMirror 2020-01-02T13:57:00.000Z The Mirror 1
## 1590 thetimes 2020-01-02T13:56:12.000Z The Times 0
## 1591 thetimes 2020-01-02T13:56:06.000Z The Times 0
## 1592 thetimes 2020-01-02T13:55:54.000Z The Times 0
## 1593 thetimes 2020-01-02T13:55:48.000Z The Times 0
## 1594 EveningStandard 2020-01-02T13:55:46.000Z Evening Standard 1
## 1595 thetimes 2020-01-02T13:55:38.000Z The Times 1
## 1596 thetimes 2020-01-02T13:55:33.000Z The Times 0
## 1597 DailyMirror 2020-01-02T13:55:28.000Z The Mirror 2
## 1598 DailyMailUK 2020-01-02T13:54:52.000Z Daily Mail U.K. 7
## 1599 EveningStandard 2020-01-02T13:54:16.000Z Evening Standard 11
## 1600 DailyMirror 2020-01-02T13:53:18.000Z The Mirror 2
## 1601 MetroUK 2020-01-02T13:52:47.000Z Metro 2
## 1602 TheSun 2020-01-02T13:52:19.000Z The Sun 1
## 1603 DailyMirror 2020-01-02T13:51:44.000Z The Mirror 8
## 1604 MetroUK 2020-01-02T13:51:09.000Z Metro 4
## 1605 MetroUK 2020-01-02T13:50:56.000Z Metro 0
## 1606 MetroUK 2020-01-02T13:50:24.000Z Metro 6
## 1607 DailyMailUK 2020-01-02T13:50:06.000Z Daily Mail U.K. 2
## 1608 TheSun 2020-01-02T13:50:00.000Z The Sun 9
## 1609 guardian 2020-01-02T13:48:23.000Z The Guardian 98
## 1610 EveningStandard 2020-01-02T13:48:22.000Z Evening Standard 1
## 1611 DailyMirror 2020-01-02T13:46:08.000Z The Mirror 3
## 1612 Telegraph 2020-01-02T13:45:30.000Z The Telegraph 2
## 1613 DailyMirror 2020-01-02T13:44:10.000Z The Mirror 12
## 1614 DailyMirror 2020-01-02T13:43:13.000Z The Mirror 5
## 1615 TheSun 2020-01-02T13:42:44.000Z The Sun 1
## 1616 DailyMirror 2020-01-02T13:42:33.000Z The Mirror 4
## 1617 EveningStandard 2020-01-02T13:41:30.000Z Evening Standard 2
## 1618 DailyMailUK 2020-01-02T13:41:08.000Z Daily Mail U.K. 3
## 1619 TheSun 2020-01-02T13:40:00.000Z The Sun 38
## 1620 guardian 2020-01-02T13:38:51.000Z The Guardian 18
## 1621 DailyMirror 2020-01-02T13:38:00.000Z The Mirror 0
## 1622 DailyMirror 2020-01-02T13:35:27.000Z The Mirror 3
## 1623 DailyMirror 2020-01-02T13:35:19.000Z The Mirror 0
## 1624 DailyMirror 2020-01-02T13:34:59.000Z The Mirror 7
## 1625 EveningStandard 2020-01-02T13:34:39.000Z Evening Standard 6
## 1626 guardian 2020-01-02T13:33:41.000Z The Guardian 20
## 1627 TheSun 2020-01-02T13:32:50.000Z The Sun 1
## 1628 thetimes 2020-01-02T13:32:42.000Z The Times 0
## 1629 DailyMailUK 2020-01-02T13:31:02.000Z Daily Mail U.K. 2
## 1630 Telegraph 2020-01-02T13:30:53.000Z The Telegraph 2
## 1631 MetroUK 2020-01-02T13:30:06.000Z Metro 1
## 1632 TheSun 2020-01-02T13:30:00.000Z The Sun 293
## 1633 guardian 2020-01-02T13:28:45.000Z The Guardian 114
## 1634 TheSun 2020-01-02T13:27:00.000Z The Sun 1
## 1635 EveningStandard 2020-01-02T13:25:46.000Z Evening Standard 0
## 1636 DailyMailUK 2020-01-02T13:25:13.000Z Daily Mail U.K. 8
## 1637 DailyMirror 2020-01-02T13:24:04.000Z The Mirror 4
## 1638 DailyMirror 2020-01-02T13:23:25.000Z The Mirror 2
## 1639 DailyMailUK 2020-01-02T13:23:02.000Z Daily Mail U.K. 18
## 1640 TheSun 2020-01-02T13:22:51.000Z The Sun 5
## 1641 guardian 2020-01-02T13:22:11.000Z The Guardian 25
## 1642 MetroUK 2020-01-02T13:21:50.000Z Metro 25
## 1643 DailyMailUK 2020-01-02T13:21:01.000Z Daily Mail U.K. 6
## 1644 DailyMirror 2020-01-02T13:21:00.000Z The Mirror 2
## 1645 DailyMirror 2020-01-02T13:20:08.000Z The Mirror 13
## 1646 TheSun 2020-01-02T13:20:00.000Z The Sun 41
## 1647 guardian 2020-01-02T13:19:53.000Z The Guardian 11
## 1648 EveningStandard 2020-01-02T13:18:52.000Z Evening Standard 7
## 1649 Telegraph 2020-01-02T13:16:01.000Z The Telegraph 3
## 1650 guardian 2020-01-02T13:13:30.000Z The Guardian 13
## 1651 TheSun 2020-01-02T13:13:16.000Z The Sun 10
## 1652 EveningStandard 2020-01-02T13:13:14.000Z Evening Standard 1
## 1653 guardian 2020-01-02T13:13:07.000Z The Guardian 11
## 1654 guardian 2020-01-02T13:13:06.000Z The Guardian 7
## 1655 guardian 2020-01-02T13:13:06.000Z The Guardian 6
## 1656 guardian 2020-01-02T13:13:05.000Z The Guardian 3
## 1657 guardian 2020-01-02T13:13:03.000Z The Guardian 14
## 1658 guardian 2020-01-02T13:13:02.000Z The Guardian 401
## 1659 guardian 2020-01-02T13:13:01.000Z The Guardian 6
## 1660 guardian 2020-01-02T13:11:31.000Z The Guardian 22
## 1661 DailyMailUK 2020-01-02T13:10:06.000Z Daily Mail U.K. 2
## 1662 TheSun 2020-01-02T13:10:00.000Z The Sun 12
## 1663 guardian 2020-01-02T13:09:47.000Z The Guardian 6
## 1664 EveningStandard 2020-01-02T13:07:47.000Z Evening Standard 1
## 1665 MetroUK 2020-01-02T13:07:26.000Z Metro 2
## 1666 MetroUK 2020-01-02T13:02:58.000Z Metro 1
## 1667 TheSun 2020-01-02T13:02:56.000Z The Sun 1
## 1668 EveningStandard 2020-01-02T13:02:55.000Z Evening Standard 1
## 1669 DailyMirror 2020-01-02T13:02:12.000Z The Mirror 2
## 1670 thetimes 2020-01-02T13:01:54.000Z The Times 3
## 1671 guardian 2020-01-02T13:01:03.000Z The Guardian 68
## 1672 Telegraph 2020-01-02T13:01:01.000Z The Telegraph 0
## 1673 DailyMailUK 2020-01-02T13:00:05.000Z Daily Mail U.K. 3
## 1674 TheSun 2020-01-02T13:00:00.000Z The Sun 24
## 1675 MetroUK 2020-01-02T12:58:12.000Z Metro 6
## 1676 DailyMailUK 2020-01-02T12:57:22.000Z Daily Mail U.K. 3
## 1677 DailyMirror 2020-01-02T12:55:48.000Z The Mirror 3
## 1678 EveningStandard 2020-01-02T12:54:00.000Z Evening Standard 0
## 1679 MetroUK 2020-01-02T12:53:09.000Z Metro 2
## 1680 TheSun 2020-01-02T12:53:03.000Z The Sun 4
## 1681 DailyMirror 2020-01-02T12:53:00.000Z The Mirror 0
## 1682 guardian 2020-01-02T12:50:42.000Z The Guardian 23
## 1683 DailyMailUK 2020-01-02T12:50:07.000Z Daily Mail U.K. 6
## 1684 DailyMirror 2020-01-02T12:50:00.000Z The Mirror 1
## 1685 TheSun 2020-01-02T12:50:00.000Z The Sun 10
## 1686 DailyMirror 2020-01-02T12:48:07.000Z The Mirror 2
## 1687 DailyMirror 2020-01-02T12:47:55.000Z The Mirror 1
## 1688 guardian 2020-01-02T12:47:53.000Z The Guardian 7
## 1689 guardian 2020-01-02T12:47:52.000Z The Guardian 2
## 1690 Telegraph 2020-01-02T12:46:10.000Z The Telegraph 9
## 1691 EveningStandard 2020-01-02T12:44:07.000Z Evening Standard 3
## 1692 TheSun 2020-01-02T12:42:09.000Z The Sun 1
## 1693 DailyMirror 2020-01-02T12:41:38.000Z The Mirror 7
## 1694 DailyMirror 2020-01-02T12:41:25.000Z The Mirror 0
## 1695 DailyMirror 2020-01-02T12:41:06.000Z The Mirror 1
## 1696 DailyMailUK 2020-01-02T12:40:04.000Z Daily Mail U.K. 3
## 1697 TheSun 2020-01-02T12:40:00.000Z The Sun 17
## 1698 DailyMirror 2020-01-02T12:37:56.000Z The Mirror 3
## 1699 guardian 2020-01-02T12:35:40.000Z The Guardian 46
## 1700 EveningStandard 2020-01-02T12:35:24.000Z Evening Standard 1
## 1701 EveningStandard 2020-01-02T12:34:16.000Z Evening Standard 1
## 1702 MetroUK 2020-01-02T12:33:23.000Z Metro 6
## 1703 TheSun 2020-01-02T12:33:19.000Z The Sun 0
## 1704 DailyMailUK 2020-01-02T12:31:05.000Z Daily Mail U.K. 2
## 1705 DailyMirror 2020-01-02T12:31:00.000Z The Mirror 2
## 1706 Telegraph 2020-01-02T12:30:49.000Z The Telegraph 6
## 1707 MetroUK 2020-01-02T12:30:19.000Z Metro 5
## 1708 guardian 2020-01-02T12:30:10.000Z The Guardian 6
## 1709 EveningStandard 2020-01-02T12:30:08.000Z Evening Standard 1
## 1710 TheSun 2020-01-02T12:30:00.000Z The Sun 4
## 1711 DailyMailUK 2020-01-02T12:28:42.000Z Daily Mail U.K. 18
## 1712 DailyMailUK 2020-01-02T12:26:37.000Z Daily Mail U.K. 8
## 1713 thetimes 2020-01-02T12:26:13.000Z The Times 0
## 1714 DailyMirror 2020-01-02T12:26:03.000Z The Mirror 4
## 1715 DailyMirror 2020-01-02T12:25:50.000Z The Mirror 2
## 1716 DailyMirror 2020-01-02T12:25:48.000Z The Mirror 0
## 1717 EveningStandard 2020-01-02T12:25:13.000Z Evening Standard 1
## 1718 TheSun 2020-01-02T12:22:16.000Z The Sun 5
## 1719 TheSun 2020-01-02T12:22:15.000Z The Sun 2
## 1720 DailyMirror 2020-01-02T12:21:03.000Z The Mirror 0
## 1721 DailyMailUK 2020-01-02T12:20:08.000Z Daily Mail U.K. 1
## 1722 TheSun 2020-01-02T12:20:00.000Z The Sun 11
## 1723 EveningStandard 2020-01-02T12:19:18.000Z Evening Standard 0
## 1724 guardian 2020-01-02T12:19:18.000Z The Guardian 1
## 1725 MetroUK 2020-01-02T12:18:53.000Z Metro 3
## 1726 DailyMirror 2020-01-02T12:17:59.000Z The Mirror 2
## 1727 Telegraph 2020-01-02T12:15:27.000Z The Telegraph 4
## 1728 DailyMirror 2020-01-02T12:13:45.000Z The Mirror 2
## 1729 EveningStandard 2020-01-02T12:13:24.000Z Evening Standard 6
## 1730 TheSun 2020-01-02T12:12:24.000Z The Sun 7
## 1731 DailyMirror 2020-01-02T12:11:13.000Z The Mirror 3
## 1732 thetimes 2020-01-02T12:11:13.000Z The Times 7
## 1733 DailyMirror 2020-01-02T12:10:49.000Z The Mirror 3
## 1734 TheSun 2020-01-02T12:10:43.000Z The Sun 7
## 1735 DailyMailUK 2020-01-02T12:10:02.000Z Daily Mail U.K. 2
## 1736 TheSun 2020-01-02T12:10:00.000Z The Sun 4
## 1737 guardian 2020-01-02T12:09:28.000Z The Guardian 53
## 1738 EveningStandard 2020-01-02T12:09:27.000Z Evening Standard 1
## 1739 DailyMirror 2020-01-02T12:08:56.000Z The Mirror 3
## 1740 DailyMirror 2020-01-02T12:07:23.000Z The Mirror 2
## 1741 DailyMirror 2020-01-02T12:05:00.000Z The Mirror 3
## 1742 TheSun 2020-01-02T12:02:36.000Z The Sun 1
## 1743 DailyMirror 2020-01-02T12:02:31.000Z The Mirror 3
## 1744 DailyMailUK 2020-01-02T12:02:08.000Z Daily Mail U.K. 2
## 1745 DailyMirror 2020-01-02T12:02:00.000Z The Mirror 0
## 1746 Telegraph 2020-01-02T12:01:01.000Z The Telegraph 4
## 1747 EveningStandard 2020-01-02T12:00:50.000Z Evening Standard 6
## 1748 DailyMirror 2020-01-02T12:00:18.000Z The Mirror 8
## 1749 MetroUK 2020-01-02T12:00:08.000Z Metro 10
## 1750 EveningStandard 2020-01-02T12:00:00.000Z Evening Standard 3
## 1751 TheSun 2020-01-02T12:00:00.000Z The Sun 200
## 1752 DailyMirror 2020-01-02T11:59:34.000Z The Mirror 1
## 1753 TheSun 2020-01-02T11:59:23.000Z The Sun 4
## 1754 DailyMailUK 2020-01-02T11:59:04.000Z Daily Mail U.K. 2
## 1755 MetroUK 2020-01-02T11:58:10.000Z Metro 4
## 1756 guardian 2020-01-02T11:57:37.000Z The Guardian 4
## 1757 DailyMirror 2020-01-02T11:55:53.000Z The Mirror 0
## 1758 EveningStandard 2020-01-02T11:55:04.000Z Evening Standard 10
## 1759 DailyMirror 2020-01-02T11:54:47.000Z The Mirror 1
## 1760 DailyMailUK 2020-01-02T11:54:44.000Z Daily Mail U.K. 15
## 1761 EveningStandard 2020-01-02T11:54:02.000Z Evening Standard 0
## 1762 TheSun 2020-01-02T11:53:04.000Z The Sun 1
## 1763 DailyMirror 2020-01-02T11:52:57.000Z The Mirror 1
## 1764 DailyMirror 2020-01-02T11:50:14.000Z The Mirror 9
## 1765 DailyMailUK 2020-01-02T11:50:08.000Z Daily Mail U.K. 0
## 1766 guardian 2020-01-02T11:50:06.000Z The Guardian 5
## 1767 EveningStandard 2020-01-02T11:50:05.000Z Evening Standard 3
## 1768 TheSun 2020-01-02T11:50:00.000Z The Sun 16
## 1769 DailyMirror 2020-01-02T11:48:43.000Z The Mirror 3
## 1770 DailyMirror 2020-01-02T11:48:08.000Z The Mirror 13
## 1771 DailyMirror 2020-01-02T11:46:18.000Z The Mirror 0
## 1772 Telegraph 2020-01-02T11:45:23.000Z The Telegraph 0
## 1773 DailyMirror 2020-01-02T11:44:32.000Z The Mirror 1
## 1774 guardian 2020-01-02T11:44:28.000Z The Guardian 32
## 1775 EveningStandard 2020-01-02T11:44:19.000Z Evening Standard 2
## 1776 TheSun 2020-01-02T11:42:25.000Z The Sun 7
## 1777 DailyMailUK 2020-01-02T11:41:04.000Z Daily Mail U.K. 2
## 1778 MetroUK 2020-01-02T11:40:21.000Z Metro 16
## 1779 guardian 2020-01-02T11:40:12.000Z The Guardian 12
## 1780 TheSun 2020-01-02T11:40:00.000Z The Sun 7
## 1781 DailyMirror 2020-01-02T11:38:35.000Z The Mirror 3
## 1782 MetroUK 2020-01-02T11:38:33.000Z Metro 5
## 1783 MetroUK 2020-01-02T11:38:15.000Z Metro 7
## 1784 DailyMirror 2020-01-02T11:38:00.000Z The Mirror 2
## 1785 DailyMirror 2020-01-02T11:35:43.000Z The Mirror 2
## 1786 thetimes 2020-01-02T11:35:16.000Z The Times 0
## 1787 EveningStandard 2020-01-02T11:35:15.000Z Evening Standard 0
## 1788 DailyMirror 2020-01-02T11:35:07.000Z The Mirror 4
## 1789 DailyMirror 2020-01-02T11:32:39.000Z The Mirror 10
## 1790 TheSun 2020-01-02T11:32:19.000Z The Sun 8
## 1791 DailyMirror 2020-01-02T11:30:27.000Z The Mirror 5
## 1792 Telegraph 2020-01-02T11:30:25.000Z The Telegraph 1
## 1793 guardian 2020-01-02T11:30:20.000Z The Guardian 3
## 1794 EveningStandard 2020-01-02T11:30:17.000Z Evening Standard 1
## 1795 DailyMirror 2020-01-02T11:30:11.000Z The Mirror 2
## 1796 DailyMailUK 2020-01-02T11:30:09.000Z Daily Mail U.K. 2
## 1797 TheSun 2020-01-02T11:30:00.000Z The Sun 8498
## 1798 DailyMirror 2020-01-02T11:25:21.000Z The Mirror 7
## 1799 TheSun 2020-01-02T11:22:44.000Z The Sun 3
## 1800 Telegraph 2020-01-02T11:20:50.000Z The Telegraph 22
## 1801 guardian 2020-01-02T11:20:49.000Z The Guardian 29
## 1802 DailyMailUK 2020-01-02T11:20:09.000Z Daily Mail U.K. 9
## 1803 TheSun 2020-01-02T11:20:00.000Z The Sun 0
## 1804 EveningStandard 2020-01-02T11:19:48.000Z Evening Standard 0
## 1805 DailyMirror 2020-01-02T11:16:46.000Z The Mirror 3
## 1806 Telegraph 2020-01-02T11:15:56.000Z The Telegraph 7
## 1807 DailyMirror 2020-01-02T11:14:00.000Z The Mirror 3
## 1808 TheSun 2020-01-02T11:12:51.000Z The Sun 3
## 1809 EveningStandard 2020-01-02T11:11:41.000Z Evening Standard 9
## 1810 Telegraph 2020-01-02T11:11:32.000Z The Telegraph 429
## 1811 DailyMirror 2020-01-02T11:11:23.000Z The Mirror 2
## 1812 guardian 2020-01-02T11:11:22.000Z The Guardian 7
## 1813 DailyMirror 2020-01-02T11:10:23.000Z The Mirror 0
## 1814 DailyMailUK 2020-01-02T11:10:05.000Z Daily Mail U.K. 0
## 1815 TheSun 2020-01-02T11:10:00.000Z The Sun 20
## 1816 EveningStandard 2020-01-02T11:09:53.000Z Evening Standard 5
## 1817 guardian 2020-01-02T11:09:53.000Z The Guardian 6
## 1818 MetroUK 2020-01-02T11:08:17.000Z Metro 31
## 1819 EveningStandard 2020-01-02T11:05:09.000Z Evening Standard 0
## 1820 DailyMailUK 2020-01-02T11:02:35.000Z Daily Mail U.K. 4
## 1821 TheSun 2020-01-02T11:02:13.000Z The Sun 0
## 1822 DailyMirror 2020-01-02T11:02:00.000Z The Mirror 2
## 1823 MetroUK 2020-01-02T11:00:57.000Z Metro 1
## 1824 Telegraph 2020-01-02T11:00:25.000Z The Telegraph 8
## 1825 Telegraph 2020-01-02T11:00:24.000Z The Telegraph 1
## 1826 DailyMirror 2020-01-02T11:00:06.000Z The Mirror 1
## 1827 TheSun 2020-01-02T11:00:00.000Z The Sun 27
## 1828 DailyMailUK 2020-01-02T10:59:04.000Z Daily Mail U.K. 9
## 1829 thetimes 2020-01-02T10:58:58.000Z The Times 8
## 1830 guardian 2020-01-02T10:58:57.000Z The Guardian 8
## 1831 EveningStandard 2020-01-02T10:55:49.000Z Evening Standard 2
## 1832 DailyMailUK 2020-01-02T10:53:33.000Z Daily Mail U.K. 12
## 1833 DailyMailUK 2020-01-02T10:53:20.000Z Daily Mail U.K. 4
## 1834 DailyMirror 2020-01-02T10:53:00.000Z The Mirror 4
## 1835 TheSun 2020-01-02T10:52:50.000Z The Sun 0
## 1836 DailyMailUK 2020-01-02T10:50:19.000Z Daily Mail U.K. 6
## 1837 DailyMailUK 2020-01-02T10:50:03.000Z Daily Mail U.K. 11
## 1838 TheSun 2020-01-02T10:50:00.000Z The Sun 34
## 1839 EveningStandard 2020-01-02T10:49:52.000Z Evening Standard 1
## 1840 DailyMailUK 2020-01-02T10:49:26.000Z Daily Mail U.K. 30
## 1841 DailyMailUK 2020-01-02T10:48:19.000Z Daily Mail U.K. 4
## 1842 guardian 2020-01-02T10:47:24.000Z The Guardian 15
## 1843 Telegraph 2020-01-02T10:46:11.000Z The Telegraph 2
## 1844 DailyMirror 2020-01-02T10:45:00.000Z The Mirror 1
## 1845 MetroUK 2020-01-02T10:44:49.000Z Metro 7
## 1846 TheSun 2020-01-02T10:42:17.000Z The Sun 1
## 1847 EveningStandard 2020-01-02T10:42:00.000Z Evening Standard 0
## 1848 EveningStandard 2020-01-02T10:40:06.000Z Evening Standard 0
## 1849 DailyMailUK 2020-01-02T10:40:05.000Z Daily Mail U.K. 1
## 1850 TheSun 2020-01-02T10:40:00.000Z The Sun 8
## 1851 DailyMirror 2020-01-02T10:37:52.000Z The Mirror 4
## 1852 DailyMailUK 2020-01-02T10:36:59.000Z Daily Mail U.K. 5
## 1853 DailyMirror 2020-01-02T10:35:51.000Z The Mirror 5
## 1854 guardian 2020-01-02T10:35:11.000Z The Guardian 44
## 1855 DailyMailUK 2020-01-02T10:33:11.000Z Daily Mail U.K. 10
## 1856 DailyMirror 2020-01-02T10:32:28.000Z The Mirror 9
## 1857 TheSun 2020-01-02T10:32:14.000Z The Sun 1
## 1858 DailyMirror 2020-01-02T10:31:36.000Z The Mirror 4
## 1859 DailyMailUK 2020-01-02T10:31:04.000Z Daily Mail U.K. 3
## 1860 TheSun 2020-01-03T04:22:18.000Z The Sun 0
## 1861 TheSun 2020-01-03T04:20:00.000Z The Sun 44
## 1862 DailyMirror 2020-01-03T04:05:00.000Z The Mirror 3
## 1863 TheSun 2020-01-03T04:02:39.000Z The Sun 1
## 1864 DailyMirror 2020-01-03T04:02:04.000Z The Mirror 1
## 1865 DailyMirror 2020-01-03T04:00:25.000Z The Mirror 2
## 1866 TheSun 2020-01-03T04:00:00.000Z The Sun 6
## 1867 DailyMirror 2020-01-03T03:45:23.000Z The Mirror 10
## 1868 TheSun 2020-01-03T03:42:58.000Z The Sun 1
## 1869 TheSun 2020-01-03T03:40:00.000Z The Sun 3
## 1870 guardian 2020-01-03T03:24:59.000Z The Guardian 5
## 1871 guardian 2020-01-03T03:24:58.000Z The Guardian 41
## 1872 TheSun 2020-01-03T03:22:19.000Z The Sun 2
## 1873 TheSun 2020-01-03T03:20:00.000Z The Sun 6
## 1874 TheSun 2020-01-03T03:19:50.000Z The Sun 9
## 1875 DailyMailUK 2020-01-03T03:19:21.000Z Daily Mail U.K. 86
## 1876 guardian 2020-01-03T03:05:35.000Z The Guardian 15
## 1877 DailyMirror 2020-01-03T03:05:25.000Z The Mirror 2
## 1878 DailyMirror 2020-01-03T03:05:00.000Z The Mirror 3
## 1879 TheSun 2020-01-03T03:02:30.000Z The Sun 3
## 1880 guardian 2020-01-03T03:00:35.000Z The Guardian 3
## 1881 TheSun 2020-01-03T03:00:00.000Z The Sun 1
## 1882 DailyMirror 2020-01-03T02:50:29.000Z The Mirror 10
## 1883 DailyMirror 2020-01-03T02:46:00.000Z The Mirror 13
## 1884 TheSun 2020-01-03T02:42:51.000Z The Sun 2
## 1885 DailyMirror 2020-01-03T02:42:00.000Z The Mirror 2
## 1886 TheSun 2020-01-03T02:40:00.000Z The Sun 18
## 1887 TheSun 2020-01-03T02:22:12.000Z The Sun 4
## 1888 TheSun 2020-01-03T02:20:00.000Z The Sun 3
## 1889 DailyMirror 2020-01-03T02:19:49.000Z The Mirror 3
## 1890 guardian 2020-01-03T02:09:20.000Z The Guardian 51
## 1891 DailyMirror 2020-01-03T02:05:18.000Z The Mirror 3
## 1892 DailyMirror 2020-01-03T02:05:00.000Z The Mirror 2
## 1893 TheSun 2020-01-03T02:02:47.000Z The Sun 2
## 1894 guardian 2020-01-03T02:00:04.000Z The Guardian 806
## 1895 TheSun 2020-01-03T02:00:00.000Z The Sun 45
## 1896 Telegraph 2020-01-03T01:59:23.000Z The Telegraph 136
## 1897 guardian 2020-01-03T01:54:55.000Z The Guardian 6
## 1898 DailyMirror 2020-01-03T01:46:00.000Z The Mirror 11
## 1899 guardian 2020-01-03T01:43:39.000Z The Guardian 21
## 1900 TheSun 2020-01-03T01:42:07.000Z The Sun 3
## 1901 DailyMirror 2020-01-03T01:42:00.000Z The Mirror 0
## 1902 TheSun 2020-01-03T01:40:00.000Z The Sun 17
## 1903 DailyMirror 2020-01-03T01:35:27.000Z The Mirror 4
## 1904 guardian 2020-01-03T01:29:19.000Z The Guardian 28
## 1905 DailyMirror 2020-01-03T01:26:00.000Z The Mirror 2
## 1906 TheSun 2020-01-03T01:22:30.000Z The Sun 1
## 1907 TheSun 2020-01-03T01:20:00.000Z The Sun 57
## 1908 guardian 2020-01-03T01:19:45.000Z The Guardian 72
## 1909 guardian 2020-01-03T01:05:02.000Z The Guardian 660
## 1910 DailyMirror 2020-01-03T01:03:20.000Z The Mirror 2
## 1911 TheSun 2020-01-03T01:02:45.000Z The Sun 0
## 1912 DailyMirror 2020-01-03T01:02:30.000Z The Mirror 9
## 1913 DailyMirror 2020-01-03T01:01:34.000Z The Mirror 4
## 1914 TheSun 2020-01-03T01:00:00.000Z The Sun 9
## 1915 DailyMirror 2020-01-03T00:58:37.000Z The Mirror 2
## 1916 DailyMirror 2020-01-03T00:58:08.000Z The Mirror 4
## 1917 guardian 2020-01-03T00:57:24.000Z The Guardian 5
## 1918 guardian 2020-01-03T00:55:51.000Z The Guardian 21
## 1919 DailyMirror 2020-01-03T00:45:18.000Z The Mirror 0
## 1920 guardian 2020-01-03T00:45:03.000Z The Guardian 5
## 1921 DailyMirror 2020-01-03T00:45:00.000Z The Mirror 6
## 1922 TheSun 2020-01-03T00:42:06.000Z The Sun 3
## 1923 DailyMirror 2020-01-03T00:41:00.000Z The Mirror 1
## 1924 TheSun 2020-01-03T00:40:00.000Z The Sun 16
## 1925 guardian 2020-01-03T00:31:24.000Z The Guardian 12
## 1926 guardian 2020-01-03T00:31:23.000Z The Guardian 25
## 1927 DailyMirror 2020-01-03T00:25:00.000Z The Mirror 2
## 1928 EveningStandard 2020-01-03T00:23:24.000Z Evening Standard 0
## 1929 TheSun 2020-01-03T00:22:26.000Z The Sun 5
## 1930 TheSun 2020-01-03T00:20:00.000Z The Sun 13
## 1931 DailyMirror 2020-01-03T00:12:00.000Z The Mirror 1
## 1932 DailyMirror 2020-01-03T00:11:00.000Z The Mirror 6
## 1933 guardian 2020-01-03T00:08:30.000Z The Guardian 35
## 1934 DailyMirror 2020-01-03T00:04:00.000Z The Mirror 3
## 1935 TheSun 2020-01-03T00:02:46.000Z The Sun 3
## 1936 TheSun 2020-01-03T00:00:00.000Z The Sun 51
## 1937 DailyMailUK 2020-01-02T23:59:07.000Z Daily Mail U.K. 3
## 1938 EveningStandard 2020-01-02T23:58:45.000Z Evening Standard 0
## 1939 guardian 2020-01-02T23:56:48.000Z The Guardian 11
## 1940 DailyMailUK 2020-01-02T23:50:07.000Z Daily Mail U.K. 3
## 1941 TheSun 2020-01-02T23:50:00.000Z The Sun 10
## 1942 DailyMirror 2020-01-02T23:49:38.000Z The Mirror 3
## 1943 guardian 2020-01-02T23:45:02.000Z The Guardian 12
## 1944 TheSun 2020-01-02T23:43:02.000Z The Sun 0
## 1945 DailyMailUK 2020-01-02T23:42:07.000Z Daily Mail U.K. 2
## 1946 EveningStandard 2020-01-02T23:42:01.000Z Evening Standard 3
## 1947 DailyMirror 2020-01-02T23:41:00.000Z The Mirror 3
## 1948 TheSun 2020-01-02T23:40:00.000Z The Sun 7
## 1949 DailyMirror 2020-01-02T23:36:24.000Z The Mirror 4
## 1950 DailyMirror 2020-01-02T23:33:56.000Z The Mirror 11
## 1951 guardian 2020-01-02T23:30:17.000Z The Guardian 9
## 1952 TheSun 2020-01-02T23:30:00.000Z The Sun 5
## 1953 EveningStandard 2020-01-02T23:25:38.000Z Evening Standard 2
## 1954 TheSun 2020-01-02T23:22:43.000Z The Sun 3
## 1955 DailyMailUK 2020-01-02T23:22:04.000Z Daily Mail U.K. 6
## 1956 guardian 2020-01-02T23:20:28.000Z The Guardian 2
## 1957 guardian 2020-01-02T23:20:27.000Z The Guardian 8
## 1958 guardian 2020-01-02T23:20:25.000Z The Guardian 3
## 1959 TheSun 2020-01-02T23:20:00.000Z The Sun 19
## 1960 DailyMirror 2020-01-02T23:17:00.000Z The Mirror 3
## 1961 Telegraph 2020-01-02T23:15:52.000Z The Telegraph 4
## 1962 DailyMirror 2020-01-02T23:12:00.000Z The Mirror 7
## 1963 TheSun 2020-01-02T23:10:00.000Z The Sun 32
## 1964 EveningStandard 2020-01-02T23:09:54.000Z Evening Standard 0
## 1965 DailyMirror 2020-01-02T23:09:23.000Z The Mirror 7
## 1966 DailyMirror 2020-01-02T23:05:28.000Z The Mirror 3
## 1967 DailyMirror 2020-01-02T23:04:00.000Z The Mirror 5
## 1968 TheSun 2020-01-02T23:03:01.000Z The Sun 1
## 1969 guardian 2020-01-02T23:02:01.000Z The Guardian 9
## 1970 Telegraph 2020-01-02T23:01:14.000Z The Telegraph 2
## 1971 DailyMailUK 2020-01-02T23:00:03.000Z Daily Mail U.K. 1
## 1972 TheSun 2020-01-02T23:00:00.000Z The Sun 17
## 1973 DailyMirror 2020-01-02T23:00:00.000Z The Mirror 2
## 1974 EveningStandard 2020-01-02T22:53:11.000Z Evening Standard 3
## 1975 guardian 2020-01-02T22:52:13.000Z The Guardian 12
## 1976 TheSun 2020-01-02T22:50:00.000Z The Sun 7
## 1977 Telegraph 2020-01-02T22:45:34.000Z The Telegraph 9
## 1978 DailyMirror 2020-01-02T22:44:22.000Z The Mirror 4
## 1979 TheSun 2020-01-02T22:42:20.000Z The Sun 3
## 1980 guardian 2020-01-02T22:42:18.000Z The Guardian 10
## 1981 DailyMailUK 2020-01-02T22:40:06.000Z Daily Mail U.K. 2
## 1982 TheSun 2020-01-02T22:40:00.000Z The Sun 37
## 1983 DailyMirror 2020-01-02T22:38:40.000Z The Mirror 6
## 1984 EveningStandard 2020-01-02T22:36:26.000Z Evening Standard 5
## 1985 TheSun 2020-01-02T22:35:41.000Z The Sun 12
## 1986 TheSun 2020-01-02T22:33:40.000Z The Sun 6
## 1987 guardian 2020-01-02T22:33:33.000Z The Guardian 1
## 1988 DailyMirror 2020-01-02T22:33:33.000Z The Mirror 16
## 1989 Telegraph 2020-01-02T22:30:39.000Z The Telegraph 16
## 1990 thetimes 2020-01-02T22:30:34.000Z The Times 3
## 1991 TheSun 2020-01-02T22:30:00.000Z The Sun 6
## 1992 DailyMirror 2020-01-02T22:29:15.000Z The Mirror 8
## 1993 DailyMirror 2020-01-02T22:29:00.000Z The Mirror 1
## 1994 DailyMirror 2020-01-02T22:25:36.000Z The Mirror 10
## 1995 DailyMirror 2020-01-02T22:24:10.000Z The Mirror 9
## 1996 DailyMailUK 2020-01-02T22:23:35.000Z Daily Mail U.K. 9
## 1997 TheSun 2020-01-02T22:22:40.000Z The Sun 5
## 1998 guardian 2020-01-02T22:21:40.000Z The Guardian 3
## 1999 DailyMirror 2020-01-02T22:21:26.000Z The Mirror 3
## 2000 EveningStandard 2020-01-02T22:20:40.000Z Evening Standard 1
## 2001 DailyMailUK 2020-01-02T22:20:13.000Z Daily Mail U.K. 6
## 2002 TheSun 2020-01-02T22:20:00.000Z The Sun 10
## 2003 DailyMirror 2020-01-02T22:20:00.000Z The Mirror 0
## 2004 DailyMirror 2020-01-02T22:20:00.000Z The Mirror 1
## 2005 DailyMirror 2020-01-02T22:18:21.000Z The Mirror 8
## 2006 TheSun 2020-01-02T22:17:44.000Z The Sun 1
## 2007 DailyMirror 2020-01-02T22:17:00.000Z The Mirror 1
## 2008 Telegraph 2020-01-02T22:15:52.000Z The Telegraph 2
## 2009 thetimes 2020-01-02T22:13:50.000Z The Times 5
## 2010 guardian 2020-01-02T22:11:24.000Z The Guardian 2
## 2011 DailyMirror 2020-01-02T22:11:00.000Z The Mirror 2
## 2012 TheSun 2020-01-02T22:10:00.000Z The Sun 8
## 2013 TheSun 2020-01-02T22:07:54.000Z The Sun 2
## 2014 guardian 2020-01-02T22:06:20.000Z The Guardian 67
## 2015 EveningStandard 2020-01-02T22:05:09.000Z Evening Standard 7
## 2016 TheSun 2020-01-02T22:02:15.000Z The Sun 3
## 2017 DailyMirror 2020-01-02T22:02:04.000Z The Mirror 4
## 2018 Telegraph 2020-01-02T22:01:14.000Z The Telegraph 515
## 2019 MetroUK 2020-01-02T22:00:09.000Z Metro 2
## 2020 DailyMailUK 2020-01-02T22:00:01.000Z Daily Mail U.K. 1
## 2021 DailyMirror 2020-01-02T22:00:00.000Z The Mirror 2
## 2022 TheSun 2020-01-02T22:00:00.000Z The Sun 199
## 2023 DailyMirror 2020-01-02T22:00:00.000Z The Mirror 1
## 2024 DailyMirror 2020-01-02T21:58:00.000Z The Mirror 0
## 2025 DailyMirror 2020-01-02T21:58:00.000Z The Mirror 1
## 2026 TheSun 2020-01-02T21:57:06.000Z The Sun 5
## 2027 guardian 2020-01-02T21:57:05.000Z The Guardian 7
## 2028 DailyMirror 2020-01-02T21:57:00.000Z The Mirror 1
## 2029 DailyMirror 2020-01-02T21:56:53.000Z The Mirror 23
## 2030 TheSun 2020-01-02T21:52:10.000Z The Sun 5
## 2031 thetimes 2020-01-02T21:50:14.000Z The Times 6
## 2032 EveningStandard 2020-01-02T21:50:12.000Z Evening Standard 0
## 2033 TheSun 2020-01-02T21:50:00.000Z The Sun 3
## 2034 TheSun 2020-01-02T21:47:15.000Z The Sun 0
## 2035 guardian 2020-01-02T21:47:07.000Z The Guardian 38
## 2036 guardian 2020-01-02T21:45:24.000Z The Guardian 13
## 2037 Telegraph 2020-01-02T21:45:22.000Z The Telegraph 6
## 2038 DailyMirror 2020-01-02T21:45:00.000Z The Mirror 2
## 2039 TheSun 2020-01-02T21:42:23.000Z The Sun 4
## 2040 DailyMailUK 2020-01-02T21:41:08.000Z Daily Mail U.K. 11
## 2041 DailyMirror 2020-01-02T21:40:49.000Z The Mirror 3
## 2042 TheSun 2020-01-02T21:40:00.000Z The Sun 7
## 2043 DailyMirror 2020-01-02T21:38:27.000Z The Mirror 5
## 2044 TheSun 2020-01-02T21:37:14.000Z The Sun 1
## 2045 DailyMirror 2020-01-02T21:37:00.000Z The Mirror 0
## 2046 DailyMirror 2020-01-02T21:36:00.000Z The Mirror 3
## 2047 DailyMirror 2020-01-02T21:36:00.000Z The Mirror 1
## 2048 thetimes 2020-01-02T21:35:20.000Z The Times 9
## 2049 guardian 2020-01-02T21:35:17.000Z The Guardian 24
## 2050 EveningStandard 2020-01-02T21:35:15.000Z Evening Standard 3
## 2051 TheSun 2020-01-02T21:32:18.000Z The Sun 2
## 2052 Telegraph 2020-01-02T21:30:30.000Z The Telegraph 9
## 2053 guardian 2020-01-02T21:30:22.000Z The Guardian 44
## 2054 MetroUK 2020-01-02T21:30:06.000Z Metro 6
## 2055 TheSun 2020-01-02T21:30:00.000Z The Sun 14
## 2056 DailyMirror 2020-01-02T21:29:00.000Z The Mirror 2
## 2057 TheSun 2020-01-02T21:26:13.000Z The Sun 3
## 2058 DailyMirror 2020-01-02T21:23:05.000Z The Mirror 3
## 2059 TheSun 2020-01-02T21:22:28.000Z The Sun 2
## 2060 EveningStandard 2020-01-02T21:22:27.000Z Evening Standard 0
## 2061 DailyMailUK 2020-01-02T21:22:03.000Z Daily Mail U.K. 2
## 2062 DailyMirror 2020-01-02T21:21:30.000Z The Mirror 5
## 2063 guardian 2020-01-02T21:21:01.000Z The Guardian 36
## 2064 guardian 2020-01-02T21:20:38.000Z The Guardian 7
## 2065 thetimes 2020-01-02T21:20:32.000Z The Times 5
## 2066 TheSun 2020-01-02T21:20:00.000Z The Sun 3
## 2067 Telegraph 2020-01-02T21:15:46.000Z The Telegraph 1
## 2068 DailyMirror 2020-01-02T21:15:00.000Z The Mirror 1
## 2069 guardian 2020-01-02T21:14:21.000Z The Guardian 41
## 2070 TheSun 2020-01-02T21:12:39.000Z The Sun 6
## 2071 DailyMirror 2020-01-02T21:12:00.000Z The Mirror 0
## 2072 DailyMirror 2020-01-02T21:11:00.000Z The Mirror 3
## 2073 DailyMirror 2020-01-02T21:11:00.000Z The Mirror 1
## 2074 DailyMirror 2020-01-02T21:11:00.000Z The Mirror 2
## 2075 TheSun 2020-01-02T21:10:00.000Z The Sun 19
## 2076 EveningStandard 2020-01-02T21:08:41.000Z Evening Standard 1
## 2077 TheSun 2020-01-02T21:06:45.000Z The Sun 6
## 2078 thetimes 2020-01-02T21:05:48.000Z The Times 5
## 2079 guardian 2020-01-02T21:05:46.000Z The Guardian 13
## 2080 DailyMirror 2020-01-02T21:05:00.000Z The Mirror 1
## 2081 TheSun 2020-01-02T21:02:49.000Z The Sun 3
## 2082 Telegraph 2020-01-02T21:01:00.000Z The Telegraph 3
## 2083 MetroUK 2020-01-02T21:00:17.000Z Metro 4
## 2084 DailyMailUK 2020-01-02T21:00:10.000Z Daily Mail U.K. 3
## 2085 TheSun 2020-01-02T21:00:00.000Z The Sun 8
## 2086 guardian 2020-01-02T20:59:54.000Z The Guardian 33
## 2087 DailyMirror 2020-01-02T20:58:00.000Z The Mirror 0
## 2088 DailyMirror 2020-01-02T20:57:00.000Z The Mirror 2
## 2089 DailyMirror 2020-01-02T20:55:00.000Z The Mirror 0
## 2090 EveningStandard 2020-01-02T20:54:58.000Z Evening Standard 0
## 2091 TheSun 2020-01-02T20:52:51.000Z The Sun 3
## 2092 DailyMirror 2020-01-02T20:51:42.000Z The Mirror 2
## 2093 thetimes 2020-01-02T20:50:09.000Z The Times 2
## 2094 guardian 2020-01-02T20:50:07.000Z The Guardian 4
## 2095 DailyMirror 2020-01-02T20:50:00.000Z The Mirror 1
## 2096 TheSun 2020-01-02T20:50:00.000Z The Sun 6
## 2097 Telegraph 2020-01-02T20:46:13.000Z The Telegraph 16
## 2098 Telegraph 2020-01-02T20:45:59.000Z The Telegraph 66
## 2099 Telegraph 2020-01-02T20:45:41.000Z The Telegraph 14
## 2100 Telegraph 2020-01-02T20:45:35.000Z The Telegraph 15
## 2101 TheSun 2020-01-02T20:45:09.000Z The Sun 5
## 2102 DailyMirror 2020-01-02T20:44:00.000Z The Mirror 2
## 2103 DailyMirror 2020-01-02T20:43:00.000Z The Mirror 2
## 2104 TheSun 2020-01-02T20:42:14.000Z The Sun 1
## 2105 EveningStandard 2020-01-02T20:41:15.000Z Evening Standard 0
## 2106 guardian 2020-01-02T20:40:14.000Z The Guardian 42
## 2107 DailyMailUK 2020-01-02T20:40:09.000Z Daily Mail U.K. 2
## 2108 TheSun 2020-01-02T20:40:00.000Z The Sun 51
## 2109 TheSun 2020-01-02T20:37:18.000Z The Sun 1
## 2110 DailyMirror 2020-01-02T20:36:00.000Z The Mirror 0
## 2111 TheSun 2020-01-02T20:35:10.000Z The Sun 0
## 2112 thetimes 2020-01-02T20:35:04.000Z The Times 1
## 2113 TheSun 2020-01-02T20:33:03.000Z The Sun 6
## 2114 Telegraph 2020-01-02T20:31:08.000Z The Telegraph 18
## 2115 guardian 2020-01-02T20:31:00.000Z The Guardian 16
## 2116 MetroUK 2020-01-02T20:30:09.000Z Metro 10
## 2117 TheSun 2020-01-02T20:30:00.000Z The Sun 20
## 2118 EveningStandard 2020-01-02T20:29:05.000Z Evening Standard 0
## 2119 DailyMirror 2020-01-02T20:29:00.000Z The Mirror 0
## 2120 guardian 2020-01-02T20:26:10.000Z The Guardian 47
## 2121 DailyMirror 2020-01-02T20:26:00.000Z The Mirror 0
## 2122 TheSun 2020-01-02T20:22:12.000Z The Sun 2
## 2123 thetimes 2020-01-02T20:20:16.000Z The Times 5
## 2124 DailyMailUK 2020-01-02T20:20:06.000Z Daily Mail U.K. 4
## 2125 TheSun 2020-01-02T20:20:00.000Z The Sun 15
## 2126 DailyMailUK 2020-01-02T20:19:46.000Z Daily Mail U.K. 126
## 2127 Telegraph 2020-01-02T20:19:44.000Z The Telegraph 7
## 2128 Telegraph 2020-01-02T20:19:37.000Z The Telegraph 35
## 2129 guardian 2020-01-02T20:17:16.000Z The Guardian 2
## 2130 EveningStandard 2020-01-02T20:16:16.000Z Evening Standard 1
## 2131 TheSun 2020-01-02T20:15:35.000Z The Sun 6
## 2132 Telegraph 2020-01-02T20:15:28.000Z The Telegraph 0
## 2133 TheSun 2020-01-02T20:15:24.000Z The Sun 3
## 2134 DailyMirror 2020-01-02T20:15:00.000Z The Mirror 2
## 2135 Telegraph 2020-01-02T20:14:49.000Z The Telegraph 6
## 2136 Telegraph 2020-01-02T20:14:24.000Z The Telegraph 7
## 2137 Telegraph 2020-01-02T20:14:21.000Z The Telegraph 1
## 2138 TheSun 2020-01-02T20:12:21.000Z The Sun 2
## 2139 DailyMirror 2020-01-02T20:11:00.000Z The Mirror 0
## 2140 TheSun 2020-01-02T20:10:00.000Z The Sun 19
## 2141 DailyMirror 2020-01-02T20:08:50.000Z The Mirror 0
## 2142 guardian 2020-01-02T20:07:27.000Z The Guardian 47
## 2143 TheSun 2020-01-02T20:07:27.000Z The Sun 4
## 2144 guardian 2020-01-02T20:07:11.000Z The Guardian 12
## 2145 guardian 2020-01-02T20:07:10.000Z The Guardian 7
## 2146 DailyMirror 2020-01-02T20:06:15.000Z The Mirror 1
## 2147 DailyMirror 2020-01-02T20:05:47.000Z The Mirror 1
## 2148 thetimes 2020-01-02T20:04:44.000Z The Times 4
## 2149 EveningStandard 2020-01-02T20:03:43.000Z Evening Standard 2
## 2150 TheSun 2020-01-02T20:02:45.000Z The Sun 3
## 2151 DailyMailUK 2020-01-02T20:02:01.000Z Daily Mail U.K. 1
## 2152 DailyMirror 2020-01-02T20:01:18.000Z The Mirror 4
## 2153 Telegraph 2020-01-02T20:00:41.000Z The Telegraph 4
## 2154 MetroUK 2020-01-02T20:00:13.000Z Metro 5
## 2155 DailyMirror 2020-01-02T20:00:06.000Z The Mirror 3
## 2156 DailyMirror 2020-01-02T20:00:00.000Z The Mirror 2
## 2157 TheSun 2020-01-02T20:00:00.000Z The Sun 41
## 2158 guardian 2020-01-02T19:58:38.000Z The Guardian 2
## 2159 TheSun 2020-01-02T19:57:41.000Z The Sun 0
## 2160 DailyMirror 2020-01-02T19:57:00.000Z The Mirror 0
## 2161 MetroUK 2020-01-02T19:56:30.000Z Metro 1
## 2162 DailyMirror 2020-01-02T19:56:00.000Z The Mirror 3
## 2163 MetroUK 2020-01-02T19:55:16.000Z Metro 6
## 2164 TheSun 2020-01-02T19:52:46.000Z The Sun 1
## 2165 EveningStandard 2020-01-02T19:50:47.000Z Evening Standard 0
## 2166 TheSun 2020-01-02T19:50:00.000Z The Sun 5
## 2167 thetimes 2020-01-02T19:49:50.000Z The Times 7
## 2168 guardian 2020-01-02T19:49:50.000Z The Guardian 14
## 2169 Telegraph 2020-01-02T19:46:11.000Z The Telegraph 9
## 2170 DailyMirror 2020-01-02T19:44:00.000Z The Mirror 2
## 2171 DailyMirror 2020-01-02T19:43:00.000Z The Mirror 1
## 2172 guardian 2020-01-02T19:42:58.000Z The Guardian 4
## 2173 guardian 2020-01-02T19:42:57.000Z The Guardian 7
## 2174 TheSun 2020-01-02T19:42:12.000Z The Sun 7
## 2175 guardian 2020-01-02T19:40:16.000Z The Guardian 4
## 2176 EveningStandard 2020-01-02T19:40:12.000Z Evening Standard 0
## 2177 DailyMailUK 2020-01-02T19:40:09.000Z Daily Mail U.K. 5
## 2178 TheSun 2020-01-02T19:40:00.000Z The Sun 15
## 2179 TheSun 2020-01-02T19:38:18.000Z The Sun 2
## 2180 DailyMirror 2020-01-02T19:36:00.000Z The Mirror 1
## 2181 thetimes 2020-01-02T19:34:11.000Z The Times 5
## 2182 DailyMirror 2020-01-02T19:32:42.000Z The Mirror 3
## 2183 TheSun 2020-01-02T19:32:22.000Z The Sun 1
## 2184 Telegraph 2020-01-02T19:31:30.000Z The Telegraph 2
## 2185 MetroUK 2020-01-02T19:30:13.000Z Metro 4
## 2186 guardian 2020-01-02T19:30:01.000Z The Guardian 4
## 2187 TheSun 2020-01-02T19:30:00.000Z The Sun 11
## 2188 EveningStandard 2020-01-02T19:29:00.000Z Evening Standard 0
## 2189 TheSun 2020-01-02T19:28:03.000Z The Sun 0
## 2190 DailyMirror 2020-01-02T19:28:00.000Z The Mirror 2
## 2191 Telegraph 2020-01-02T19:25:44.000Z The Telegraph 10
## 2192 TheSun 2020-01-02T19:23:08.000Z The Sun 1
## 2193 DailyMirror 2020-01-02T19:23:00.000Z The Mirror 2
## 2194 Telegraph 2020-01-02T19:20:27.000Z The Telegraph 4
## 2195 DailyMailUK 2020-01-02T19:20:02.000Z Daily Mail U.K. 7
## 2196 TheSun 2020-01-02T19:20:00.000Z The Sun 13
## 2197 guardian 2020-01-02T19:19:58.000Z The Guardian 0
## 2198 guardian 2020-01-02T19:19:57.000Z The Guardian 6
## 2199 DailyMirror 2020-01-02T19:19:50.000Z The Mirror 1
## 2200 thetimes 2020-01-02T19:18:15.000Z The Times 15
## 2201 TheSun 2020-01-02T19:18:14.000Z The Sun 0
## 2202 EveningStandard 2020-01-02T19:18:13.000Z Evening Standard 1
## 2203 DailyMirror 2020-01-02T19:16:59.000Z The Mirror 16
## 2204 Telegraph 2020-01-02T19:15:59.000Z The Telegraph 2
## 2205 DailyMirror 2020-01-02T19:15:00.000Z The Mirror 3
## 2206 guardian 2020-01-02T19:14:00.000Z The Guardian 6
## 2207 TheSun 2020-01-02T19:13:10.000Z The Sun 7
## 2208 DailyMirror 2020-01-02T19:11:00.000Z The Mirror 4
## 2209 TheSun 2020-01-02T19:10:00.000Z The Sun 19
## 2210 DailyMirror 2020-01-02T19:09:00.000Z The Mirror 0
## 2211 DailyMirror 2020-01-02T19:08:54.000Z The Mirror 0
## 2212 TheSun 2020-01-02T19:07:55.000Z The Sun 2
## 2213 TheSun 2020-01-02T19:07:18.000Z The Sun 2
## 2214 EveningStandard 2020-01-02T19:07:17.000Z Evening Standard 2
## 2215 DailyMirror 2020-01-02T19:06:38.000Z The Mirror 25
## 2216 guardian 2020-01-02T19:06:12.000Z The Guardian 14
## 2217 DailyMirror 2020-01-02T19:05:27.000Z The Mirror 1
## 2218 DailyMirror 2020-01-02T19:05:00.000Z The Mirror 2
## 2219 thetimes 2020-01-02T19:02:33.000Z The Times 18
## 2220 TheSun 2020-01-02T19:02:33.000Z The Sun 15
## 2221 DailyMailUK 2020-01-02T19:01:02.000Z Daily Mail U.K. 2
## 2222 MetroUK 2020-01-02T19:00:16.000Z Metro 0
## 2223 TheSun 2020-01-02T19:00:00.000Z The Sun 9
## 2224 DailyMirror 2020-01-02T18:58:00.000Z The Mirror 2
## 2225 TheSun 2020-01-02T18:57:47.000Z The Sun 1
## 2226 TheSun 2020-01-02T18:56:01.000Z The Sun 14
## 2227 DailyMirror 2020-01-02T18:56:00.000Z The Mirror 2
## 2228 guardian 2020-01-02T18:55:57.000Z The Guardian 9
## 2229 guardian 2020-01-02T18:55:57.000Z The Guardian 14
## 2230 guardian 2020-01-02T18:55:56.000Z The Guardian 11
## 2231 EveningStandard 2020-01-02T18:55:48.000Z Evening Standard 0
## 2232 TheSun 2020-01-02T18:55:34.000Z The Sun 1
## 2233 DailyMirror 2020-01-02T18:55:26.000Z The Mirror 2
## 2234 guardian 2020-01-02T18:54:51.000Z The Guardian 18
## 2235 TheSun 2020-01-02T18:52:52.000Z The Sun 6
## 2236 MetroUK 2020-01-02T18:50:56.000Z Metro 2
## 2237 TheSun 2020-01-02T18:50:00.000Z The Sun 21
## 2238 DailyMirror 2020-01-02T18:50:00.000Z The Mirror 3
## 2239 DailyMirror 2020-01-02T18:49:00.000Z The Mirror 2
## 2240 Telegraph 2020-01-02T18:46:03.000Z The Telegraph 3
## 2241 thetimes 2020-01-02T18:46:02.000Z The Times 4
## 2242 guardian 2020-01-02T18:45:02.000Z The Guardian 6
## 2243 EveningStandard 2020-01-02T18:45:00.000Z Evening Standard 1
## 2244 TheSun 2020-01-02T18:43:02.000Z The Sun 3
## 2245 DailyMailUK 2020-01-02T18:40:02.000Z Daily Mail U.K. 4
## 2246 TheSun 2020-01-02T18:40:00.000Z The Sun 11
## 2247 MetroUK 2020-01-02T18:39:58.000Z Metro 2
## 2248 EveningStandard 2020-01-02T18:38:08.000Z Evening Standard 1
## 2249 DailyMirror 2020-01-02T18:37:46.000Z The Mirror 7
## 2250 DailyMirror 2020-01-02T18:36:00.000Z The Mirror 10
## 2251 guardian 2020-01-02T18:33:52.000Z The Guardian 5
## 2252 guardian 2020-01-02T18:33:52.000Z The Guardian 12
## 2253 guardian 2020-01-02T18:33:51.000Z The Guardian 41
## 2254 MetroUK 2020-01-02T18:32:15.000Z Metro 1
## 2255 TheSun 2020-01-02T18:32:07.000Z The Sun 4
## 2256 Telegraph 2020-01-02T18:31:08.000Z The Telegraph 2
## 2257 MetroUK 2020-01-02T18:30:11.000Z Metro 1
## 2258 TheSun 2020-01-02T18:30:00.000Z The Sun 9
## 2259 thetimes 2020-01-02T18:30:00.000Z The Times 2
## 2260 EveningStandard 2020-01-02T18:28:00.000Z Evening Standard 0
## 2261 guardian 2020-01-02T18:26:03.000Z The Guardian 3
## 2262 TheSun 2020-01-02T18:22:08.000Z The Sun 4
## 2263 DailyMailUK 2020-01-02T18:20:06.000Z Daily Mail U.K. 7
## 2264 EveningStandard 2020-01-02T18:20:04.000Z Evening Standard 1
## 2265 DailyMirror 2020-01-02T18:20:00.000Z The Mirror 3
## 2266 TheSun 2020-01-02T18:20:00.000Z The Sun 6
## 2267 DailyMirror 2020-01-02T18:19:26.000Z The Mirror 2
## 2268 DailyMirror 2020-01-02T18:16:37.000Z The Mirror 3
## 2269 Telegraph 2020-01-02T18:16:16.000Z The Telegraph 4
## 2270 guardian 2020-01-02T18:16:08.000Z The Guardian 31
## 2271 DailyMirror 2020-01-02T18:15:00.000Z The Mirror 2
## 2272 thetimes 2020-01-02T18:14:09.000Z The Times 3
## 2273 DailyMirror 2020-01-02T18:12:31.000Z The Mirror 1
## 2274 TheSun 2020-01-02T18:12:08.000Z The Sun 3
## 2275 DailyMirror 2020-01-02T18:11:00.000Z The Mirror 2
## 2276 DailyMirror 2020-01-02T18:10:55.000Z The Mirror 45
## 2277 EveningStandard 2020-01-02T18:10:11.000Z Evening Standard 0
## 2278 guardian 2020-01-02T18:10:10.000Z The Guardian 8
## 2279 guardian 2020-01-02T18:10:09.000Z The Guardian 41
## 2280 guardian 2020-01-02T18:10:07.000Z The Guardian 20
## 2281 TheSun 2020-01-02T18:10:00.000Z The Sun 4
## 2282 guardian 2020-01-02T18:05:31.000Z The Guardian 14
## 2283 TheSun 2020-01-02T18:04:31.000Z The Sun 1
## 2284 EveningStandard 2020-01-02T18:04:30.000Z Evening Standard 3
## 2285 TheSun 2020-01-02T18:02:30.000Z The Sun 5
## 2286 Telegraph 2020-01-02T18:00:32.000Z The Telegraph 1
## 2287 MetroUK 2020-01-02T18:00:20.000Z Metro 2
## 2288 DailyMailUK 2020-01-02T18:00:04.000Z Daily Mail U.K. 8
## 2289 TheSun 2020-01-02T18:00:00.000Z The Sun 59
## 2290 DailyMirror 2020-01-02T18:00:00.000Z The Mirror 4
## 2291 DailyMirror 2020-01-02T17:59:32.000Z The Mirror 3
## 2292 thetimes 2020-01-02T17:57:27.000Z The Times 10
## 2293 DailyMailUK 2020-01-02T17:57:04.000Z Daily Mail U.K. 3
## 2294 guardian 2020-01-02T17:54:30.000Z The Guardian 30
## 2295 EveningStandard 2020-01-02T17:54:29.000Z Evening Standard 0
## 2296 TheSun 2020-01-02T17:52:51.000Z The Sun 4
## 2297 TheSun 2020-01-02T17:50:00.000Z The Sun 8
## 2298 DailyMirror 2020-01-02T17:49:00.000Z The Mirror 3
## 2299 TheSun 2020-01-02T17:47:42.000Z The Sun 3
## 2300 DailyMirror 2020-01-02T17:46:25.000Z The Mirror 6
## 2301 EveningStandard 2020-01-02T17:44:45.000Z Evening Standard 0
## 2302 guardian 2020-01-02T17:44:28.000Z The Guardian 2
## 2303 guardian 2020-01-02T17:44:27.000Z The Guardian 23
## 2304 guardian 2020-01-02T17:44:27.000Z The Guardian 1
## 2305 DailyMirror 2020-01-02T17:44:00.000Z The Mirror 4
## 2306 TheSun 2020-01-02T17:42:48.000Z The Sun 1
## 2307 DailyMailUK 2020-01-02T17:40:05.000Z Daily Mail U.K. 3
## 2308 TheSun 2020-01-02T17:40:00.000Z The Sun 8
## 2309 DailyMirror 2020-01-02T17:39:27.000Z The Mirror 4
## 2310 thetimes 2020-01-02T17:38:54.000Z The Times 5
## 2311 DailyMirror 2020-01-02T17:38:26.000Z The Mirror 3
## 2312 EveningStandard 2020-01-02T17:36:53.000Z Evening Standard 0
## 2313 DailyMirror 2020-01-02T17:36:00.000Z The Mirror 10
## 2314 guardian 2020-01-02T17:34:55.000Z The Guardian 9
## 2315 TheSun 2020-01-02T17:32:57.000Z The Sun 4
## 2316 MetroUK 2020-01-02T17:30:43.000Z Metro 4
## 2317 Telegraph 2020-01-02T17:30:21.000Z The Telegraph 0
## 2318 thetimes 2020-01-02T17:30:19.000Z The Times 5
## 2319 MetroUK 2020-01-02T17:30:14.000Z Metro 3
## 2320 TheSun 2020-01-02T17:30:00.000Z The Sun 10
## 2321 DailyMirror 2020-01-02T17:29:43.000Z The Mirror 7
## 2322 EveningStandard 2020-01-02T17:29:14.000Z Evening Standard 0
## 2323 guardian 2020-01-02T17:25:08.000Z The Guardian 109
## 2324 DailyMirror 2020-01-02T17:24:58.000Z The Mirror 4
## 2325 EveningStandard 2020-01-02T17:24:21.000Z Evening Standard 5
## 2326 Telegraph 2020-01-02T17:23:53.000Z The Telegraph 22
## 2327 DailyMirror 2020-01-02T17:23:00.000Z The Mirror 5
## 2328 TheSun 2020-01-02T17:22:23.000Z The Sun 5
## 2329 DailyMailUK 2020-01-02T17:21:03.000Z Daily Mail U.K. 14
## 2330 thetimes 2020-01-02T17:20:26.000Z The Times 4
## 2331 TheSun 2020-01-02T17:20:00.000Z The Sun 21
## 2332 DailyMirror 2020-01-02T17:19:00.000Z The Mirror 0
## 2333 EveningStandard 2020-01-02T17:16:29.000Z Evening Standard 1
## 2334 DailyMirror 2020-01-02T17:16:19.000Z The Mirror 1
## 2335 Telegraph 2020-01-02T17:15:39.000Z The Telegraph 42
## 2336 guardian 2020-01-02T17:15:29.000Z The Guardian 11
## 2337 TheSun 2020-01-02T17:15:05.000Z The Sun 0
## 2338 TheSun 2020-01-02T17:12:33.000Z The Sun 1
## 2339 DailyMirror 2020-01-02T17:11:00.000Z The Mirror 1
## 2340 TheSun 2020-01-02T17:10:00.000Z The Sun 15
## 2341 guardian 2020-01-02T17:09:51.000Z The Guardian 2
## 2342 EveningStandard 2020-01-02T17:09:32.000Z Evening Standard 10
## 2343 EveningStandard 2020-01-02T17:06:40.000Z Evening Standard 1
## 2344 DailyMirror 2020-01-02T17:06:02.000Z The Mirror 3
## 2345 DailyMailUK 2020-01-02T17:05:42.000Z Daily Mail U.K. 4
## 2346 guardian 2020-01-02T17:04:41.000Z The Guardian 63
## 2347 Telegraph 2020-01-02T17:04:01.000Z The Telegraph 4
## 2348 Telegraph 2020-01-02T17:03:56.000Z The Telegraph 3
## 2349 Telegraph 2020-01-02T17:03:49.000Z The Telegraph 214
## 2350 Telegraph 2020-01-02T17:03:37.000Z The Telegraph 5
## 2351 DailyMirror 2020-01-02T17:02:52.000Z The Mirror 2
## 2352 TheSun 2020-01-02T17:02:42.000Z The Sun 1
## 2353 DailyMirror 2020-01-02T17:01:52.000Z The Mirror 5
## 2354 Telegraph 2020-01-02T17:00:37.000Z The Telegraph 10
## 2355 MetroUK 2020-01-02T17:00:11.000Z Metro 1
## 2356 TheSun 2020-01-02T17:00:00.000Z The Sun 28
## 2357 DailyMailUK 2020-01-02T16:59:07.000Z Daily Mail U.K. 1
## 2358 EveningStandard 2020-01-02T16:57:39.000Z Evening Standard 1
## 2359 MetroUK 2020-01-02T16:56:45.000Z Metro 6
## 2360 DailyMirror 2020-01-03T13:26:58.000Z The Mirror 2
## 2361 guardian 2020-01-03T13:26:16.000Z The Guardian 102
## 2362 thetimes 2020-01-03T13:25:23.000Z The Times 4
## 2363 TheSun 2020-01-03T13:22:22.000Z The Sun 3
## 2364 TheSun 2020-01-03T13:21:24.000Z The Sun 1
## 2365 EveningStandard 2020-01-03T13:21:08.000Z Evening Standard 5
## 2366 DailyMirror 2020-01-03T13:21:00.000Z The Mirror 1
## 2367 EveningStandard 2020-01-03T13:20:24.000Z Evening Standard 1
## 2368 DailyMailUK 2020-01-03T13:20:07.000Z Daily Mail U.K. 35
## 2369 TheSun 2020-01-03T13:20:00.000Z The Sun 89
## 2370 DailyMirror 2020-01-03T13:18:00.000Z The Mirror 1
## 2371 DailyMirror 2020-01-03T13:17:16.000Z The Mirror 0
## 2372 DailyMirror 2020-01-03T13:17:14.000Z The Mirror 1
## 2373 guardian 2020-01-03T13:16:12.000Z The Guardian 38
## 2374 Telegraph 2020-01-03T13:16:12.000Z The Telegraph 1
## 2375 EveningStandard 2020-01-03T13:13:56.000Z Evening Standard 2
## 2376 DailyMirror 2020-01-03T13:13:55.000Z The Mirror 10
## 2377 DailyMailUK 2020-01-03T13:13:03.000Z Daily Mail U.K. 16
## 2378 TheSun 2020-01-03T13:12:48.000Z The Sun 1
## 2379 DailyMirror 2020-01-03T13:11:00.000Z The Mirror 0
## 2380 DailyMailUK 2020-01-03T13:10:06.000Z Daily Mail U.K. 1
## 2381 TheSun 2020-01-03T13:10:00.000Z The Sun 5
## 2382 thetimes 2020-01-03T13:09:53.000Z The Times 2
## 2383 guardian 2020-01-03T13:09:52.000Z The Guardian 38
## 2384 DailyMirror 2020-01-03T13:09:00.000Z The Mirror 1
## 2385 EveningStandard 2020-01-03T13:08:48.000Z Evening Standard 0
## 2386 thetimes 2020-01-03T13:07:49.000Z The Times 2
## 2387 EveningStandard 2020-01-03T13:06:51.000Z Evening Standard 1
## 2388 DailyMailUK 2020-01-03T13:05:01.000Z Daily Mail U.K. 10
## 2389 EveningStandard 2020-01-03T13:03:50.000Z Evening Standard 0
## 2390 guardian 2020-01-03T13:03:00.000Z The Guardian 0
## 2391 TheSun 2020-01-03T13:02:15.000Z The Sun 5
## 2392 guardian 2020-01-03T13:02:01.000Z The Guardian 33
## 2393 guardian 2020-01-03T13:02:00.000Z The Guardian 1
## 2394 Telegraph 2020-01-03T13:01:06.000Z The Telegraph 5
## 2395 MetroUK 2020-01-03T13:00:06.000Z Metro 5
## 2396 guardian 2020-01-03T13:00:04.000Z The Guardian 10
## 2397 EveningStandard 2020-01-03T13:00:04.000Z Evening Standard 2
## 2398 TheSun 2020-01-03T13:00:01.000Z The Sun 1
## 2399 DailyMirror 2020-01-03T12:59:40.000Z The Mirror 3
## 2400 DailyMailUK 2020-01-03T12:59:01.000Z Daily Mail U.K. 19
## 2401 DailyMirror 2020-01-03T12:54:33.000Z The Mirror 3
## 2402 EveningStandard 2020-01-03T12:54:09.000Z Evening Standard 6
## 2403 MetroUK 2020-01-03T12:54:01.000Z Metro 5
## 2404 DailyMirror 2020-01-03T12:52:48.000Z The Mirror 9
## 2405 TheSun 2020-01-03T12:52:14.000Z The Sun 1
## 2406 EveningStandard 2020-01-03T12:51:13.000Z Evening Standard 0
## 2407 DailyMirror 2020-01-03T12:51:07.000Z The Mirror 2
## 2408 thetimes 2020-01-03T12:50:16.000Z The Times 11
## 2409 guardian 2020-01-03T12:50:15.000Z The Guardian 10
## 2410 TheSun 2020-01-03T12:50:00.000Z The Sun 32
## 2411 EveningStandard 2020-01-03T12:46:14.000Z Evening Standard 0
## 2412 DailyMailUK 2020-01-03T12:45:43.000Z Daily Mail U.K. 10
## 2413 DailyMirror 2020-01-03T12:45:32.000Z The Mirror 0
## 2414 Telegraph 2020-01-03T12:45:19.000Z The Telegraph 12
## 2415 MetroUK 2020-01-03T12:44:12.000Z Metro 3
## 2416 TheSun 2020-01-03T12:42:17.000Z The Sun 1
## 2417 DailyMirror 2020-01-03T12:41:12.000Z The Mirror 18
## 2418 DailyMailUK 2020-01-03T12:40:09.000Z Daily Mail U.K. 2
## 2419 TheSun 2020-01-03T12:40:00.000Z The Sun 14
## 2420 EveningStandard 2020-01-03T12:38:46.000Z Evening Standard 9
## 2421 guardian 2020-01-03T12:36:14.000Z The Guardian 2
## 2422 guardian 2020-01-03T12:36:14.000Z The Guardian 23
## 2423 guardian 2020-01-03T12:36:13.000Z The Guardian 13
## 2424 EveningStandard 2020-01-03T12:34:25.000Z Evening Standard 0
## 2425 TheSun 2020-01-03T12:32:27.000Z The Sun 1
## 2426 DailyMailUK 2020-01-03T12:31:05.000Z Daily Mail U.K. 1
## 2427 Telegraph 2020-01-03T12:30:38.000Z The Telegraph 4
## 2428 thetimes 2020-01-03T12:30:29.000Z The Times 13
## 2429 MetroUK 2020-01-03T12:30:03.000Z Metro 4
## 2430 TheSun 2020-01-03T12:30:00.000Z The Sun 10
## 2431 MetroUK 2020-01-03T12:29:57.000Z Metro 1
## 2432 DailyMirror 2020-01-03T12:27:00.000Z The Mirror 1
## 2433 DailyMailUK 2020-01-03T12:26:56.000Z Daily Mail U.K. 24
## 2434 TheSun 2020-01-03T12:25:50.000Z The Sun 2
## 2435 guardian 2020-01-03T12:25:26.000Z The Guardian 6
## 2436 EveningStandard 2020-01-03T12:24:26.000Z Evening Standard 2
## 2437 TheSun 2020-01-03T12:22:28.000Z The Sun 0
## 2438 DailyMirror 2020-01-03T12:22:03.000Z The Mirror 1
## 2439 DailyMirror 2020-01-03T12:22:00.000Z The Mirror 2
## 2440 DailyMirror 2020-01-03T12:21:44.000Z The Mirror 1
## 2441 TheSun 2020-01-03T12:21:10.000Z The Sun 3
## 2442 thetimes 2020-01-03T12:20:46.000Z The Times 7
## 2443 EveningStandard 2020-01-03T12:20:29.000Z Evening Standard 0
## 2444 DailyMailUK 2020-01-03T12:20:05.000Z Daily Mail U.K. 5
## 2445 TheSun 2020-01-03T12:20:00.000Z The Sun 8
## 2446 DailyMirror 2020-01-03T12:19:05.000Z The Mirror 6
## 2447 MetroUK 2020-01-03T12:18:37.000Z Metro 2
## 2448 TheSun 2020-01-03T12:16:25.000Z The Sun 0
## 2449 Telegraph 2020-01-03T12:15:34.000Z The Telegraph 11
## 2450 thetimes 2020-01-03T12:14:31.000Z The Times 3
## 2451 guardian 2020-01-03T12:12:45.000Z The Guardian 91
## 2452 DailyMirror 2020-01-03T12:11:51.000Z The Mirror 3
## 2453 DailyMirror 2020-01-03T12:10:45.000Z The Mirror 3
## 2454 EveningStandard 2020-01-03T12:10:30.000Z Evening Standard 0
## 2455 DailyMailUK 2020-01-03T12:10:08.000Z Daily Mail U.K. 7
## 2456 TheSun 2020-01-03T12:10:00.000Z The Sun 41
## 2457 DailyMirror 2020-01-03T12:09:00.000Z The Mirror 2
## 2458 DailyMirror 2020-01-03T12:07:19.000Z The Mirror 4
## 2459 EveningStandard 2020-01-03T12:04:36.000Z Evening Standard 10
## 2460 DailyMirror 2020-01-03T12:04:25.000Z The Mirror 6
## 2461 guardian 2020-01-03T12:03:22.000Z The Guardian 324
## 2462 DailyMirror 2020-01-03T12:03:00.000Z The Mirror 11
## 2463 DailyMirror 2020-01-03T12:02:58.000Z The Mirror 1
## 2464 TheSun 2020-01-03T12:02:40.000Z The Sun 2
## 2465 DailyMirror 2020-01-03T12:02:03.000Z The Mirror 2
## 2466 Telegraph 2020-01-03T12:00:47.000Z The Telegraph 7
## 2467 TheSun 2020-01-03T12:00:45.000Z The Sun 3
## 2468 EveningStandard 2020-01-03T12:00:40.000Z Evening Standard 0
## 2469 MetroUK 2020-01-03T12:00:11.000Z Metro 1
## 2470 TheSun 2020-01-03T12:00:00.000Z The Sun 6
## 2471 DailyMailUK 2020-01-03T11:59:08.000Z Daily Mail U.K. 4
## 2472 DailyMirror 2020-01-03T11:58:00.000Z The Mirror 4
## 2473 DailyMirror 2020-01-03T11:57:56.000Z The Mirror 1
## 2474 thetimes 2020-01-03T11:55:49.000Z The Times 9
## 2475 DailyMailUK 2020-01-03T11:55:29.000Z Daily Mail U.K. 36
## 2476 EveningStandard 2020-01-03T11:54:42.000Z Evening Standard 1
## 2477 TheSun 2020-01-03T11:52:48.000Z The Sun 2
## 2478 DailyMailUK 2020-01-03T11:52:05.000Z Daily Mail U.K. 1246
## 2479 DailyMailUK 2020-01-03T11:51:04.000Z Daily Mail U.K. 1
## 2480 Telegraph 2020-01-03T11:50:49.000Z The Telegraph 12
## 2481 TheSun 2020-01-03T11:50:00.000Z The Sun 28
## 2482 DailyMirror 2020-01-03T11:50:00.000Z The Mirror 0
## 2483 guardian 2020-01-03T11:49:47.000Z The Guardian 30
## 2484 DailyMailUK 2020-01-03T11:48:46.000Z Daily Mail U.K. 7
## 2485 DailyMailUK 2020-01-03T11:47:17.000Z Daily Mail U.K. 1
## 2486 EveningStandard 2020-01-03T11:45:51.000Z Evening Standard 0
## 2487 DailyMailUK 2020-01-03T11:43:12.000Z Daily Mail U.K. 41
## 2488 TheSun 2020-01-03T11:42:53.000Z The Sun 21
## 2489 DailyMailUK 2020-01-03T11:40:05.000Z Daily Mail U.K. 5
## 2490 TheSun 2020-01-03T11:40:00.000Z The Sun 19
## 2491 guardian 2020-01-03T11:39:35.000Z The Guardian 40
## 2492 guardian 2020-01-03T11:38:57.000Z The Guardian 4
## 2493 EveningStandard 2020-01-03T11:38:21.000Z Evening Standard 9
## 2494 EveningStandard 2020-01-03T11:38:12.000Z Evening Standard 19
## 2495 DailyMirror 2020-01-03T11:38:00.000Z The Mirror 1
## 2496 EveningStandard 2020-01-03T11:37:59.000Z Evening Standard 13
## 2497 DailyMailUK 2020-01-03T11:36:38.000Z Daily Mail U.K. 7
## 2498 Telegraph 2020-01-03T11:35:35.000Z The Telegraph 2
## 2499 EveningStandard 2020-01-03T11:35:00.000Z Evening Standard 1
## 2500 DailyMirror 2020-01-03T11:34:57.000Z The Mirror 5
## 2501 TheSun 2020-01-03T11:33:05.000Z The Sun 1
## 2502 DailyMirror 2020-01-03T11:32:31.000Z The Mirror 2
## 2503 MetroUK 2020-01-03T11:31:06.000Z Metro 7
## 2504 MetroUK 2020-01-03T11:30:43.000Z Metro 1
## 2505 DailyMailUK 2020-01-03T11:30:08.000Z Daily Mail U.K. 3
## 2506 TheSun 2020-01-03T11:30:00.000Z The Sun 9
## 2507 guardian 2020-01-03T11:29:08.000Z The Guardian 10
## 2508 TheSun 2020-01-03T11:28:03.000Z The Sun 2
## 2509 DailyMirror 2020-01-03T11:27:06.000Z The Mirror 1
## 2510 MetroUK 2020-01-03T11:26:57.000Z Metro 12
## 2511 DailyMirror 2020-01-03T11:25:59.000Z The Mirror 2
## 2512 TheSun 2020-01-03T11:25:28.000Z The Sun 1
## 2513 EveningStandard 2020-01-03T11:25:11.000Z Evening Standard 0
## 2514 guardian 2020-01-03T11:23:58.000Z The Guardian 22
## 2515 DailyMailUK 2020-01-03T11:23:10.000Z Daily Mail U.K. 33
## 2516 DailyMirror 2020-01-03T11:23:08.000Z The Mirror 8
## 2517 DailyMirror 2020-01-03T11:22:46.000Z The Mirror 0
## 2518 TheSun 2020-01-03T11:22:17.000Z The Sun 1
## 2519 TheSun 2020-01-03T11:22:16.000Z The Sun 1
## 2520 DailyMirror 2020-01-03T11:21:00.000Z The Mirror 0
## 2521 EveningStandard 2020-01-03T11:20:16.000Z Evening Standard 0
## 2522 DailyMailUK 2020-01-03T11:20:06.000Z Daily Mail U.K. 5
## 2523 TheSun 2020-01-03T11:20:00.000Z The Sun 16
## 2524 DailyMirror 2020-01-03T11:19:48.000Z The Mirror 4
## 2525 thetimes 2020-01-03T11:19:20.000Z The Times 0
## 2526 guardian 2020-01-03T11:19:18.000Z The Guardian 3
## 2527 DailyMirror 2020-01-03T11:18:35.000Z The Mirror 0
## 2528 EveningStandard 2020-01-03T11:17:18.000Z Evening Standard 0
## 2529 DailyMirror 2020-01-03T11:16:55.000Z The Mirror 9
## 2530 DailyMailUK 2020-01-03T11:14:15.000Z Daily Mail U.K. 15
## 2531 DailyMailUK 2020-01-03T11:14:07.000Z Daily Mail U.K. 15
## 2532 EveningStandard 2020-01-03T11:10:59.000Z Evening Standard 6
## 2533 DailyMirror 2020-01-03T11:10:27.000Z The Mirror 2
## 2534 guardian 2020-01-03T11:10:25.000Z The Guardian 117
## 2535 EveningStandard 2020-01-03T11:10:25.000Z Evening Standard 1
## 2536 DailyMailUK 2020-01-03T11:10:05.000Z Daily Mail U.K. 0
## 2537 TheSun 2020-01-03T11:10:00.000Z The Sun 109
## 2538 DailyMirror 2020-01-03T11:09:50.000Z The Mirror 2
## 2539 MetroUK 2020-01-03T11:07:56.000Z Metro 2
## 2540 DailyMirror 2020-01-03T11:07:48.000Z The Mirror 3
## 2541 DailyMirror 2020-01-03T11:07:15.000Z The Mirror 5
## 2542 DailyMailUK 2020-01-03T11:07:04.000Z Daily Mail U.K. 4
## 2543 thetimes 2020-01-03T11:04:29.000Z The Times 7
## 2544 EveningStandard 2020-01-03T11:04:28.000Z Evening Standard 2
## 2545 DailyMailUK 2020-01-03T11:03:59.000Z Daily Mail U.K. 3
## 2546 TheSun 2020-01-03T11:02:31.000Z The Sun 2
## 2547 DailyMirror 2020-01-03T11:01:34.000Z The Mirror 6
## 2548 DailyMirror 2020-01-03T11:01:07.000Z The Mirror 2
## 2549 Telegraph 2020-01-03T11:00:18.000Z The Telegraph 30
## 2550 TheSun 2020-01-03T11:00:00.000Z The Sun 8
## 2551 guardian 2020-01-03T10:59:23.000Z The Guardian 17
## 2552 DailyMailUK 2020-01-03T10:59:03.000Z Daily Mail U.K. 5
## 2553 EveningStandard 2020-01-03T10:57:21.000Z Evening Standard 9
## 2554 EveningStandard 2020-01-03T10:54:26.000Z Evening Standard 1
## 2555 DailyMirror 2020-01-03T10:53:10.000Z The Mirror 2
## 2556 TheSun 2020-01-03T10:52:26.000Z The Sun 4
## 2557 DailyMailUK 2020-01-03T10:51:07.000Z Daily Mail U.K. 0
## 2558 EveningStandard 2020-01-03T10:50:28.000Z Evening Standard 0
## 2559 DailyMirror 2020-01-03T10:50:00.000Z The Mirror 0
## 2560 TheSun 2020-01-03T10:50:00.000Z The Sun 12
## 2561 DailyMirror 2020-01-03T10:49:25.000Z The Mirror 2
## 2562 thetimes 2020-01-03T10:48:21.000Z The Times 2
## 2563 DailyMirror 2020-01-03T10:47:51.000Z The Mirror 3
## 2564 DailyMirror 2020-01-03T10:47:50.000Z The Mirror 4
## 2565 guardian 2020-01-03T10:47:20.000Z The Guardian 14
## 2566 DailyMirror 2020-01-03T10:46:52.000Z The Mirror 4
## 2567 TheSun 2020-01-03T10:43:40.000Z The Sun 3
## 2568 EveningStandard 2020-01-03T10:43:10.000Z Evening Standard 25
## 2569 TheSun 2020-01-03T10:42:29.000Z The Sun 3
## 2570 Telegraph 2020-01-03T10:40:32.000Z The Telegraph 18
## 2571 TheSun 2020-01-03T10:40:00.000Z The Sun 10
## 2572 DailyMailUK 2020-01-03T10:38:50.000Z Daily Mail U.K. 6
## 2573 DailyMailUK 2020-01-03T10:37:36.000Z Daily Mail U.K. 9
## 2574 MetroUK 2020-01-03T10:37:34.000Z Metro 3
## 2575 DailyMailUK 2020-01-03T10:36:06.000Z Daily Mail U.K. 24
## 2576 DailyMirror 2020-01-03T10:35:38.000Z The Mirror 6
## 2577 EveningStandard 2020-01-03T10:35:18.000Z Evening Standard 0
## 2578 guardian 2020-01-03T10:35:07.000Z The Guardian 2
## 2579 guardian 2020-01-03T10:35:06.000Z The Guardian 2
## 2580 guardian 2020-01-03T10:35:05.000Z The Guardian 1
## 2581 guardian 2020-01-03T10:35:04.000Z The Guardian 2
## 2582 DailyMailUK 2020-01-03T10:35:04.000Z Daily Mail U.K. 5
## 2583 TheSun 2020-01-03T10:34:22.000Z The Sun 1
## 2584 guardian 2020-01-03T10:34:17.000Z The Guardian 65
## 2585 DailyMirror 2020-01-03T10:33:25.000Z The Mirror 8
## 2586 thetimes 2020-01-03T10:32:20.000Z The Times 9
## 2587 TheSun 2020-01-03T10:32:19.000Z The Sun 1
## 2588 DailyMailUK 2020-01-03T10:32:01.000Z Daily Mail U.K. 1
## 2589 DailyMirror 2020-01-03T10:31:13.000Z The Mirror 0
## 2590 DailyMirror 2020-01-03T10:30:39.000Z The Mirror 1
## 2591 DailyMailUK 2020-01-03T10:30:29.000Z Daily Mail U.K. 3
## 2592 EveningStandard 2020-01-03T10:30:14.000Z Evening Standard 0
## 2593 TheSun 2020-01-03T10:30:00.000Z The Sun 5
## 2594 DailyMirror 2020-01-03T10:28:38.000Z The Mirror 4
## 2595 MetroUK 2020-01-03T10:26:47.000Z Metro 4
## 2596 DailyMirror 2020-01-03T10:25:46.000Z The Mirror 2
## 2597 DailyMirror 2020-01-03T10:24:28.000Z The Mirror 4
## 2598 guardian 2020-01-03T10:24:03.000Z The Guardian 46
## 2599 TheSun 2020-01-03T10:23:05.000Z The Sun 1
## 2600 DailyMirror 2020-01-03T10:22:00.000Z The Mirror 2
## 2601 DailyMailUK 2020-01-03T10:21:02.000Z Daily Mail U.K. 10
## 2602 EveningStandard 2020-01-03T10:20:20.000Z Evening Standard 3
## 2603 TheSun 2020-01-03T10:20:00.000Z The Sun 27
## 2604 Telegraph 2020-01-03T10:17:38.000Z The Telegraph 14
## 2605 DailyMirror 2020-01-03T10:16:29.000Z The Mirror 7
## 2606 DailyMailUK 2020-01-03T10:15:50.000Z Daily Mail U.K. 27
## 2607 DailyMailUK 2020-01-03T10:15:26.000Z Daily Mail U.K. 37
## 2608 thetimes 2020-01-03T10:15:09.000Z The Times 5
## 2609 EveningStandard 2020-01-03T10:15:08.000Z Evening Standard 0
## 2610 DailyMailUK 2020-01-03T10:15:05.000Z Daily Mail U.K. 4
## 2611 DailyMailUK 2020-01-03T10:14:06.000Z Daily Mail U.K. 39
## 2612 DailyMirror 2020-01-03T10:13:00.000Z The Mirror 8
## 2613 DailyMirror 2020-01-03T10:12:11.000Z The Mirror 4
## 2614 TheSun 2020-01-03T10:12:11.000Z The Sun 4
## 2615 guardian 2020-01-03T10:12:00.000Z The Guardian 5
## 2616 DailyMirror 2020-01-03T10:11:00.000Z The Mirror 4
## 2617 guardian 2020-01-03T10:10:34.000Z The Guardian 3
## 2618 DailyMirror 2020-01-03T10:10:00.000Z The Mirror 4
## 2619 TheSun 2020-01-03T10:10:00.000Z The Sun 3
## 2620 TheSun 2020-01-03T10:09:55.000Z The Sun 3
## 2621 Telegraph 2020-01-03T10:09:33.000Z The Telegraph 34
## 2622 DailyMailUK 2020-01-03T10:09:03.000Z Daily Mail U.K. 4
## 2623 DailyMirror 2020-01-03T10:07:30.000Z The Mirror 7
## 2624 EveningStandard 2020-01-03T10:06:13.000Z Evening Standard 6
## 2625 DailyMailUK 2020-01-03T10:04:13.000Z Daily Mail U.K. 53
## 2626 MetroUK 2020-01-03T10:04:07.000Z Metro 3
## 2627 DailyMirror 2020-01-03T10:04:00.000Z The Mirror 1
## 2628 TheSun 2020-01-03T10:02:50.000Z The Sun 1
## 2629 DailyMirror 2020-01-03T10:01:42.000Z The Mirror 3
## 2630 guardian 2020-01-03T10:01:36.000Z The Guardian 17
## 2631 DailyMirror 2020-01-03T10:01:10.000Z The Mirror 2
## 2632 Telegraph 2020-01-03T10:00:45.000Z The Telegraph 3
## 2633 EveningStandard 2020-01-03T10:00:00.000Z Evening Standard 3
## 2634 TheSun 2020-01-03T10:00:00.000Z The Sun 5
## 2635 DailyMailUK 2020-01-03T09:59:01.000Z Daily Mail U.K. 3
## 2636 DailyMirror 2020-01-03T09:57:56.000Z The Mirror 2
## 2637 Telegraph 2020-01-03T09:57:21.000Z The Telegraph 30
## 2638 DailyMailUK 2020-01-03T09:56:49.000Z Daily Mail U.K. 32
## 2639 EveningStandard 2020-01-03T09:55:38.000Z Evening Standard 1
## 2640 DailyMirror 2020-01-03T09:55:03.000Z The Mirror 4
## 2641 TheSun 2020-01-03T09:52:42.000Z The Sun 1
## 2642 Telegraph 2020-01-03T09:52:37.000Z The Telegraph 31
## 2643 DailyMirror 2020-01-03T09:51:47.000Z The Mirror 5
## 2644 DailyMirror 2020-01-03T09:50:57.000Z The Mirror 1
## 2645 DailyMirror 2020-01-03T09:50:29.000Z The Mirror 2
## 2646 DailyMailUK 2020-01-03T09:50:02.000Z Daily Mail U.K. 7
## 2647 TheSun 2020-01-03T09:50:00.000Z The Sun 16
## 2648 TheSun 2020-01-03T09:49:26.000Z The Sun 3
## 2649 guardian 2020-01-03T09:47:35.000Z The Guardian 11
## 2650 guardian 2020-01-03T09:47:34.000Z The Guardian 8
## 2651 DailyMirror 2020-01-03T09:47:00.000Z The Mirror 4
## 2652 guardian 2020-01-03T09:45:46.000Z The Guardian 72
## 2653 EveningStandard 2020-01-03T09:45:41.000Z Evening Standard 1
## 2654 DailyMirror 2020-01-03T09:45:00.000Z The Mirror 1
## 2655 thetimes 2020-01-03T09:44:43.000Z The Times 2
## 2656 MetroUK 2020-01-03T09:43:29.000Z Metro 4
## 2657 MetroUK 2020-01-03T09:43:15.000Z Metro 5
## 2658 TheSun 2020-01-03T09:42:47.000Z The Sun 6
## 2659 MetroUK 2020-01-03T09:42:36.000Z Metro 4
## 2660 DailyMailUK 2020-01-03T09:40:07.000Z Daily Mail U.K. 9
## 2661 guardian 2020-01-03T09:40:05.000Z The Guardian 196
## 2662 TheSun 2020-01-03T09:40:00.000Z The Sun 3
## 2663 DailyMirror 2020-01-03T09:38:37.000Z The Mirror 2
## 2664 DailyMirror 2020-01-03T09:38:00.000Z The Mirror 4
## 2665 DailyMirror 2020-01-03T09:36:16.000Z The Mirror 3
## 2666 guardian 2020-01-03T09:35:52.000Z The Guardian 19
## 2667 TheSun 2020-01-03T09:32:54.000Z The Sun 7
## 2668 DailyMirror 2020-01-03T09:32:33.000Z The Mirror 2
## 2669 Telegraph 2020-01-03T09:31:05.000Z The Telegraph 6
## 2670 DailyMailUK 2020-01-03T09:30:44.000Z Daily Mail U.K. 4
## 2671 DailyMirror 2020-01-03T09:30:36.000Z The Mirror 6
## 2672 DailyMirror 2020-01-03T09:30:34.000Z The Mirror 6
## 2673 DailyMailUK 2020-01-03T09:30:07.000Z Daily Mail U.K. 3
## 2674 TheSun 2020-01-03T09:30:00.000Z The Sun 11
## 2675 thetimes 2020-01-03T09:29:49.000Z The Times 0
## 2676 Telegraph 2020-01-03T09:26:23.000Z The Telegraph 44
## 2677 guardian 2020-01-03T09:25:17.000Z The Guardian 4
## 2678 TheSun 2020-01-03T09:22:54.000Z The Sun 2
## 2679 EveningStandard 2020-01-03T09:21:55.000Z Evening Standard 2
## 2680 TheSun 2020-01-03T09:20:00.000Z The Sun 3
## 2681 MetroUK 2020-01-03T09:18:53.000Z Metro 7
## 2682 DailyMailUK 2020-01-03T09:18:15.000Z Daily Mail U.K. 7
## 2683 DailyMirror 2020-01-03T09:17:47.000Z The Mirror 6
## 2684 MetroUK 2020-01-03T09:17:27.000Z Metro 22
## 2685 Telegraph 2020-01-03T09:16:05.000Z The Telegraph 0
## 2686 DailyMirror 2020-01-03T09:15:34.000Z The Mirror 1
## 2687 thetimes 2020-01-03T09:15:04.000Z The Times 9
## 2688 guardian 2020-01-03T09:15:03.000Z The Guardian 32
## 2689 DailyMailUK 2020-01-03T09:13:30.000Z Daily Mail U.K. 12
## 2690 TheSun 2020-01-03T09:13:04.000Z The Sun 5
## 2691 DailyMailUK 2020-01-03T09:12:46.000Z Daily Mail U.K. 22
## 2692 DailyMirror 2020-01-03T09:11:00.000Z The Mirror 10
## 2693 DailyMailUK 2020-01-03T09:10:03.000Z Daily Mail U.K. 1
## 2694 TheSun 2020-01-03T09:10:00.000Z The Sun 15
## 2695 thetimes 2020-01-03T09:09:30.000Z The Times 4
## 2696 MetroUK 2020-01-03T09:07:16.000Z Metro 10
## 2697 EveningStandard 2020-01-03T09:06:01.000Z Evening Standard 3
## 2698 guardian 2020-01-03T09:03:24.000Z The Guardian 6
## 2699 guardian 2020-01-03T09:03:24.000Z The Guardian 4
## 2700 guardian 2020-01-03T09:03:22.000Z The Guardian 3
## 2701 guardian 2020-01-03T09:03:21.000Z The Guardian 18
## 2702 guardian 2020-01-03T09:03:06.000Z The Guardian 12
## 2703 DailyMirror 2020-01-03T09:02:15.000Z The Mirror 0
## 2704 DailyMirror 2020-01-03T09:02:10.000Z The Mirror 3
## 2705 TheSun 2020-01-03T09:02:07.000Z The Sun 4
## 2706 Telegraph 2020-01-03T09:01:09.000Z The Telegraph 3
## 2707 DailyMailUK 2020-01-03T09:00:13.000Z Daily Mail U.K. 0
## 2708 thetimes 2020-01-03T09:00:07.000Z The Times 10
## 2709 TheSun 2020-01-03T09:00:00.000Z The Sun 3
## 2710 DailyMailUK 2020-01-03T08:58:36.000Z Daily Mail U.K. 34
## 2711 DailyMirror 2020-01-03T08:58:00.000Z The Mirror 2
## 2712 DailyMirror 2020-01-03T08:53:47.000Z The Mirror 4
## 2713 TheSun 2020-01-03T08:52:10.000Z The Sun 2
## 2714 guardian 2020-01-03T08:52:02.000Z The Guardian 49
## 2715 DailyMirror 2020-01-03T08:50:38.000Z The Mirror 5
## 2716 EveningStandard 2020-01-03T08:50:13.000Z Evening Standard 2
## 2717 DailyMailUK 2020-01-03T08:50:02.000Z Daily Mail U.K. 10
## 2718 TheSun 2020-01-03T08:50:00.000Z The Sun 13
## 2719 DailyMailUK 2020-01-03T08:50:00.000Z Daily Mail U.K. 34
## 2720 DailyMailUK 2020-01-03T08:47:41.000Z Daily Mail U.K. 70
## 2721 guardian 2020-01-03T08:47:18.000Z The Guardian 16
## 2722 DailyMirror 2020-01-03T08:46:00.000Z The Mirror 2
## 2723 thetimes 2020-01-03T08:45:46.000Z The Times 19
## 2724 Telegraph 2020-01-03T08:45:22.000Z The Telegraph 16
## 2725 DailyMailUK 2020-01-03T08:45:04.000Z Daily Mail U.K. 3
## 2726 DailyMirror 2020-01-03T08:43:27.000Z The Mirror 2
## 2727 TheSun 2020-01-03T08:42:17.000Z The Sun 0
## 2728 guardian 2020-01-03T08:40:51.000Z The Guardian 5
## 2729 guardian 2020-01-03T08:40:50.000Z The Guardian 1
## 2730 DailyMailUK 2020-01-03T08:40:08.000Z Daily Mail U.K. 8
## 2731 TheSun 2020-01-03T08:40:00.000Z The Sun 46
## 2732 DailyMailUK 2020-01-03T08:39:44.000Z Daily Mail U.K. 6
## 2733 MetroUK 2020-01-03T08:38:34.000Z Metro 16
## 2734 guardian 2020-01-03T08:35:30.000Z The Guardian 137
## 2735 EveningStandard 2020-01-03T08:34:22.000Z Evening Standard 0
## 2736 TheSun 2020-01-03T08:32:24.000Z The Sun 7
## 2737 DailyMirror 2020-01-03T08:31:24.000Z The Mirror 21
## 2738 DailyMirror 2020-01-03T08:31:19.000Z The Mirror 6
## 2739 DailyMirror 2020-01-03T08:30:46.000Z The Mirror 3
## 2740 Telegraph 2020-01-03T08:30:36.000Z The Telegraph 17
## 2741 thetimes 2020-01-03T08:30:34.000Z The Times 2
## 2742 TheSun 2020-01-03T08:30:00.000Z The Sun 4
## 2743 guardian 2020-01-03T08:29:28.000Z The Guardian 16
## 2744 DailyMirror 2020-01-03T08:29:00.000Z The Mirror 3
## 2745 DailyMirror 2020-01-03T08:28:46.000Z The Mirror 3
## 2746 DailyMailUK 2020-01-03T08:23:25.000Z Daily Mail U.K. 1
## 2747 TheSun 2020-01-03T08:22:34.000Z The Sun 1
## 2748 TheSun 2020-01-03T08:20:00.000Z The Sun 9
## 2749 EveningStandard 2020-01-03T08:18:36.000Z Evening Standard 3
## 2750 MetroUK 2020-01-03T08:18:23.000Z Metro 7
## 2751 DailyMirror 2020-01-03T08:18:09.000Z The Mirror 1
## 2752 DailyMirror 2020-01-03T08:14:47.000Z The Mirror 2
## 2753 guardian 2020-01-03T08:14:15.000Z The Guardian 68
## 2754 guardian 2020-01-03T08:14:13.000Z The Guardian 5
## 2755 thetimes 2020-01-03T08:13:28.000Z The Times 6
## 2756 DailyMirror 2020-01-03T08:13:00.000Z The Mirror 3
## 2757 TheSun 2020-01-03T08:12:29.000Z The Sun 6
## 2758 DailyMirror 2020-01-03T08:11:00.000Z The Mirror 2
## 2759 DailyMirror 2020-01-03T08:10:40.000Z The Mirror 4
## 2760 TheSun 2020-01-03T08:10:00.000Z The Sun 9
## 2761 Telegraph 2020-01-03T08:09:28.000Z The Telegraph 16
## 2762 DailyMailUK 2020-01-03T08:08:11.000Z Daily Mail U.K. 176
## 2763 DailyMirror 2020-01-03T08:04:21.000Z The Mirror 3
## 2764 TheSun 2020-01-03T08:02:28.000Z The Sun 4
## 2765 EveningStandard 2020-01-03T08:02:27.000Z Evening Standard 0
## 2766 DailyMirror 2020-01-03T08:01:13.000Z The Mirror 0
## 2767 guardian 2020-01-03T08:00:28.000Z The Guardian 26
## 2768 TheSun 2020-01-03T08:00:00.000Z The Sun 31
## 2769 MetroUK 2020-01-03T07:59:29.000Z Metro 2
## 2770 TheSun 2020-01-03T07:52:38.000Z The Sun 6
## 2771 TheSun 2020-01-03T07:50:00.000Z The Sun 14
## 2772 MetroUK 2020-01-03T07:49:37.000Z Metro 3
## 2773 DailyMailUK 2020-01-03T07:49:34.000Z Daily Mail U.K. 11
## 2774 guardian 2020-01-03T07:49:32.000Z The Guardian 1
## 2775 DailyMirror 2020-01-03T07:46:00.000Z The Mirror 3
## 2776 Telegraph 2020-01-03T07:45:50.000Z The Telegraph 15
## 2777 EveningStandard 2020-01-03T07:45:46.000Z Evening Standard 0
## 2778 DailyMailUK 2020-01-03T07:44:18.000Z Daily Mail U.K. 3
## 2779 TheSun 2020-01-03T07:42:49.000Z The Sun 5
## 2780 TheSun 2020-01-03T07:41:29.000Z The Sun 4
## 2781 thetimes 2020-01-03T07:41:06.000Z The Times 4
## 2782 TheSun 2020-01-03T07:40:00.000Z The Sun 17
## 2783 thetimes 2020-01-03T07:39:53.000Z The Times 48
## 2784 guardian 2020-01-03T07:39:50.000Z The Guardian 16
## 2785 Telegraph 2020-01-03T07:38:50.000Z The Telegraph 8
## 2786 DailyMirror 2020-01-03T07:37:26.000Z The Mirror 7
## 2787 TheSun 2020-01-03T07:32:58.000Z The Sun 4
## 2788 DailyMirror 2020-01-03T07:32:19.000Z The Mirror 3
## 2789 Telegraph 2020-01-03T07:31:03.000Z The Telegraph 8
## 2790 TheSun 2020-01-03T07:30:00.000Z The Sun 16
## 2791 EveningStandard 2020-01-03T07:29:59.000Z Evening Standard 0
## 2792 Telegraph 2020-01-03T07:28:23.000Z The Telegraph 8
## 2793 DailyMailUK 2020-01-03T07:24:44.000Z Daily Mail U.K. 11
## 2794 DailyMirror 2020-01-03T07:22:00.000Z The Mirror 0
## 2795 TheSun 2020-01-03T07:21:12.000Z The Sun 2
## 2796 thetimes 2020-01-03T07:20:30.000Z The Times 6
## 2797 guardian 2020-01-03T07:20:29.000Z The Guardian 60
## 2798 DailyMirror 2020-01-03T07:20:07.000Z The Mirror 2
## 2799 TheSun 2020-01-03T07:20:00.000Z The Sun 6
## 2800 DailyMirror 2020-01-03T07:20:00.000Z The Mirror 3
## 2801 MetroUK 2020-01-03T07:17:46.000Z Metro 15
## 2802 DailyMirror 2020-01-03T07:16:23.000Z The Mirror 6
## 2803 EveningStandard 2020-01-03T07:13:21.000Z Evening Standard 4
## 2804 DailyMirror 2020-01-03T07:13:00.000Z The Mirror 7
## 2805 DailyMirror 2020-01-03T07:11:00.000Z The Mirror 2
## 2806 TheSun 2020-01-03T07:10:00.000Z The Sun 17
## 2807 guardian 2020-01-03T07:02:07.000Z The Guardian 14
## 2808 DailyMirror 2020-01-03T07:02:00.000Z The Mirror 3
## 2809 Telegraph 2020-01-03T07:00:22.000Z The Telegraph 6
## 2810 thetimes 2020-01-03T07:00:21.000Z The Times 11
## 2811 MetroUK 2020-01-03T07:00:07.000Z Metro 2
## 2812 TheSun 2020-01-03T07:00:00.000Z The Sun 15
## 2813 DailyMirror 2020-01-03T06:59:17.000Z The Mirror 3
## 2814 DailyMirror 2020-01-03T06:58:05.000Z The Mirror 3
## 2815 DailyMirror 2020-01-03T06:46:05.000Z The Mirror 1
## 2816 TheSun 2020-01-03T06:42:30.000Z The Sun 3
## 2817 thetimes 2020-01-03T06:40:32.000Z The Times 13
## 2818 TheSun 2020-01-03T06:40:00.000Z The Sun 3
## 2819 guardian 2020-01-03T06:37:03.000Z The Guardian 49
## 2820 guardian 2020-01-03T06:37:01.000Z The Guardian 9
## 2821 guardian 2020-01-03T06:37:00.000Z The Guardian 10
## 2822 Telegraph 2020-01-03T06:30:46.000Z The Telegraph 4
## 2823 MetroUK 2020-01-03T06:30:06.000Z Metro 4
## 2824 DailyMirror 2020-01-03T06:26:37.000Z The Mirror 0
## 2825 guardian 2020-01-03T06:25:40.000Z The Guardian 615
## 2826 TheSun 2020-01-03T06:22:41.000Z The Sun 3
## 2827 DailyMirror 2020-01-03T06:22:00.000Z The Mirror 2
## 2828 thetimes 2020-01-03T06:20:44.000Z The Times 8
## 2829 TheSun 2020-01-03T06:20:00.000Z The Sun 13
## 2830 DailyMirror 2020-01-03T06:20:00.000Z The Mirror 4
## 2831 guardian 2020-01-03T06:16:18.000Z The Guardian 35
## 2832 guardian 2020-01-03T06:13:41.000Z The Guardian 21
## 2833 TheSun 2020-01-03T06:02:16.000Z The Sun 0
## 2834 thetimes 2020-01-03T06:00:21.000Z The Times 8
## 2835 Telegraph 2020-01-03T06:00:20.000Z The Telegraph 18
## 2836 TheSun 2020-01-03T06:00:00.000Z The Sun 7
## 2837 DailyMirror 2020-01-03T05:53:12.000Z The Mirror 33
## 2838 DailyMirror 2020-01-03T05:51:32.000Z The Mirror 9
## 2839 guardian 2020-01-03T05:51:27.000Z The Guardian 136
## 2840 DailyMirror 2020-01-03T05:47:44.000Z The Mirror 6
## 2841 TheSun 2020-01-03T05:42:54.000Z The Sun 1
## 2842 TheSun 2020-01-03T05:40:00.000Z The Sun 2
## 2843 TheSun 2020-01-03T05:22:45.000Z The Sun 6
## 2844 DailyMirror 2020-01-03T05:22:00.000Z The Mirror 0
## 2845 DailyMirror 2020-01-03T05:22:00.000Z The Mirror 1
## 2846 DailyMirror 2020-01-03T05:20:00.000Z The Mirror 0
## 2847 TheSun 2020-01-03T05:20:00.000Z The Sun 11
## 2848 TheSun 2020-01-03T05:03:09.000Z The Sun 2
## 2849 DailyMirror 2020-01-03T05:02:00.000Z The Mirror 4
## 2850 TheSun 2020-01-03T05:00:00.000Z The Sun 5
## 2851 DailyMirror 2020-01-03T04:47:44.000Z The Mirror 1
## 2852 guardian 2020-01-03T04:45:54.000Z The Guardian 44
## 2853 EveningStandard 2020-01-03T04:43:55.000Z Evening Standard 0
## 2854 TheSun 2020-01-03T04:42:57.000Z The Sun 0
## 2855 guardian 2020-01-03T04:40:00.000Z The Guardian 87
## 2856 TheSun 2020-01-03T04:40:00.000Z The Sun 17
## 2857 guardian 2020-01-03T04:33:06.000Z The Guardian 33
## 2858 DailyMirror 2020-01-03T04:27:00.000Z The Mirror 4
## 2859 guardian 2020-01-03T04:25:14.000Z The Guardian 13
## 2860 EveningStandard 2020-01-03T19:49:17.000Z Evening Standard 1
## 2861 DailyMirror 2020-01-03T19:49:00.000Z The Mirror 2
## 2862 DailyMirror 2020-01-03T19:49:00.000Z The Mirror 2
## 2863 DailyMirror 2020-01-03T19:48:33.000Z The Mirror 21
## 2864 DailyMirror 2020-01-03T19:47:00.000Z The Mirror 4
## 2865 DailyMirror 2020-01-03T19:47:00.000Z The Mirror 0
## 2866 DailyMirror 2020-01-03T19:46:00.000Z The Mirror 1
## 2867 Telegraph 2020-01-03T19:45:28.000Z The Telegraph 2
## 2868 TheSun 2020-01-03T19:42:24.000Z The Sun 1
## 2869 DailyMailUK 2020-01-03T19:42:05.000Z Daily Mail U.K. 8
## 2870 MetroUK 2020-01-03T19:41:30.000Z Metro 2
## 2871 guardian 2020-01-03T19:40:26.000Z The Guardian 47
## 2872 DailyMirror 2020-01-03T19:40:00.000Z The Mirror 2
## 2873 TheSun 2020-01-03T19:40:00.000Z The Sun 2
## 2874 DailyMirror 2020-01-03T19:39:00.000Z The Mirror 3
## 2875 TheSun 2020-01-03T19:37:28.000Z The Sun 0
## 2876 thetimes 2020-01-03T19:35:20.000Z The Times 3
## 2877 EveningStandard 2020-01-03T19:35:19.000Z Evening Standard 1
## 2878 TheSun 2020-01-03T19:32:23.000Z The Sun 1
## 2879 MetroUK 2020-01-03T19:31:04.000Z Metro 3
## 2880 MetroUK 2020-01-03T19:30:56.000Z Metro 5
## 2881 Telegraph 2020-01-03T19:30:42.000Z The Telegraph 4
## 2882 MetroUK 2020-01-03T19:30:14.000Z Metro 16
## 2883 TheSun 2020-01-03T19:30:00.000Z The Sun 1
## 2884 guardian 2020-01-03T19:29:17.000Z The Guardian 7
## 2885 DailyMirror 2020-01-03T19:27:53.000Z The Mirror 0
## 2886 DailyMirror 2020-01-03T19:27:03.000Z The Mirror 1
## 2887 TheSun 2020-01-03T19:26:36.000Z The Sun 17
## 2888 DailyMirror 2020-01-03T19:26:00.000Z The Mirror 1
## 2889 DailyMirror 2020-01-03T19:26:00.000Z The Mirror 0
## 2890 guardian 2020-01-03T19:25:56.000Z The Guardian 5
## 2891 TheSun 2020-01-03T19:23:03.000Z The Sun 112
## 2892 DailyMailUK 2020-01-03T19:22:05.000Z Daily Mail U.K. 2
## 2893 DailyMirror 2020-01-03T19:22:00.000Z The Mirror 2
## 2894 EveningStandard 2020-01-03T19:20:48.000Z Evening Standard 2
## 2895 TheSun 2020-01-03T19:20:00.000Z The Sun 22
## 2896 thetimes 2020-01-03T19:18:53.000Z The Times 3
## 2897 Telegraph 2020-01-03T19:16:00.000Z The Telegraph 11
## 2898 DailyMirror 2020-01-03T19:16:00.000Z The Mirror 0
## 2899 guardian 2020-01-03T19:15:52.000Z The Guardian 28
## 2900 Telegraph 2020-01-03T19:15:10.000Z The Telegraph 4
## 2901 DailyMirror 2020-01-03T19:15:04.000Z The Mirror 6
## 2902 TheSun 2020-01-03T19:12:58.000Z The Sun 5
## 2903 DailyMirror 2020-01-03T19:11:00.000Z The Mirror 3
## 2904 TheSun 2020-01-03T19:10:00.000Z The Sun 31
## 2905 DailyMirror 2020-01-03T19:10:00.000Z The Mirror 1
## 2906 DailyMirror 2020-01-03T19:09:45.000Z The Mirror 5
## 2907 DailyMirror 2020-01-03T19:09:29.000Z The Mirror 4
## 2908 DailyMirror 2020-01-03T19:08:00.000Z The Mirror 4
## 2909 EveningStandard 2020-01-03T19:06:02.000Z Evening Standard 0
## 2910 guardian 2020-01-03T19:05:28.000Z The Guardian 6
## 2911 guardian 2020-01-03T19:05:27.000Z The Guardian 26
## 2912 guardian 2020-01-03T19:05:25.000Z The Guardian 5
## 2913 DailyMirror 2020-01-03T19:05:00.000Z The Mirror 2
## 2914 DailyMirror 2020-01-03T19:04:00.000Z The Mirror 2
## 2915 DailyMirror 2020-01-03T19:02:30.000Z The Mirror 4
## 2916 DailyMirror 2020-01-03T19:02:14.000Z The Mirror 74
## 2917 thetimes 2020-01-03T19:02:09.000Z The Times 5
## 2918 TheSun 2020-01-03T19:02:08.000Z The Sun 9
## 2919 Telegraph 2020-01-03T19:01:13.000Z The Telegraph 9
## 2920 DailyMirror 2020-01-03T19:01:02.000Z The Mirror 2
## 2921 DailyMirror 2020-01-03T19:01:00.000Z The Mirror 1
## 2922 MetroUK 2020-01-03T19:00:11.000Z Metro 21
## 2923 DailyMailUK 2020-01-03T19:00:03.000Z Daily Mail U.K. 0
## 2924 DailyMirror 2020-01-03T19:00:01.000Z The Mirror 2
## 2925 DailyMirror 2020-01-03T19:00:00.000Z The Mirror 2
## 2926 TheSun 2020-01-03T19:00:00.000Z The Sun 3
## 2927 guardian 2020-01-03T18:58:09.000Z The Guardian 140
## 2928 DailyMirror 2020-01-03T18:58:00.000Z The Mirror 4
## 2929 EveningStandard 2020-01-03T18:54:53.000Z Evening Standard 0
## 2930 DailyMirror 2020-01-03T18:53:00.000Z The Mirror 3
## 2931 DailyMirror 2020-01-03T18:53:00.000Z The Mirror 4
## 2932 TheSun 2020-01-03T18:52:58.000Z The Sun 0
## 2933 DailyMirror 2020-01-03T18:52:00.000Z The Mirror 4
## 2934 guardian 2020-01-03T18:51:01.000Z The Guardian 33
## 2935 DailyMirror 2020-01-03T18:51:00.000Z The Mirror 1
## 2936 TheSun 2020-01-03T18:50:00.000Z The Sun 21
## 2937 DailyMirror 2020-01-03T18:49:00.000Z The Mirror 2
## 2938 DailyMirror 2020-01-03T18:49:00.000Z The Mirror 4
## 2939 DailyMirror 2020-01-03T18:47:00.000Z The Mirror 3
## 2940 Telegraph 2020-01-03T18:46:07.000Z The Telegraph 8
## 2941 thetimes 2020-01-03T18:45:06.000Z The Times 10
## 2942 EveningStandard 2020-01-03T18:45:04.000Z Evening Standard 0
## 2943 TheSun 2020-01-03T18:42:08.000Z The Sun 2
## 2944 DailyMailUK 2020-01-03T18:41:05.000Z Daily Mail U.K. 10
## 2945 TheSun 2020-01-03T18:40:00.000Z The Sun 12
## 2946 guardian 2020-01-03T18:39:24.000Z The Guardian 7
## 2947 guardian 2020-01-03T18:39:23.000Z The Guardian 19
## 2948 DailyMirror 2020-01-03T18:38:00.000Z The Mirror 1
## 2949 TheSun 2020-01-03T18:37:14.000Z The Sun 2
## 2950 EveningStandard 2020-01-03T18:36:13.000Z Evening Standard 1
## 2951 guardian 2020-01-03T18:35:15.000Z The Guardian 43
## 2952 Telegraph 2020-01-03T18:34:18.000Z The Telegraph 4
## 2953 TheSun 2020-01-03T18:32:17.000Z The Sun 6
## 2954 Telegraph 2020-01-03T18:30:26.000Z The Telegraph 3
## 2955 MetroUK 2020-01-03T18:30:09.000Z Metro 0
## 2956 TheSun 2020-01-03T18:30:00.000Z The Sun 3
## 2957 thetimes 2020-01-03T18:28:23.000Z The Times 4
## 2958 DailyMirror 2020-01-03T18:28:00.000Z The Mirror 4
## 2959 DailyMirror 2020-01-03T18:26:58.000Z The Mirror 7
## 2960 EveningStandard 2020-01-03T18:26:23.000Z Evening Standard 0
## 2961 guardian 2020-01-03T18:25:43.000Z The Guardian 18
## 2962 DailyMirror 2020-01-03T18:25:20.000Z The Mirror 43
## 2963 DailyMirror 2020-01-03T18:22:59.000Z The Mirror 9
## 2964 TheSun 2020-01-03T18:22:35.000Z The Sun 8
## 2965 DailyMailUK 2020-01-03T18:21:05.000Z Daily Mail U.K. 4
## 2966 DailyMailUK 2020-01-03T18:20:33.000Z Daily Mail U.K. 38
## 2967 TheSun 2020-01-03T18:20:00.000Z The Sun 1
## 2968 DailyMirror 2020-01-03T18:18:00.000Z The Mirror 1
## 2969 EveningStandard 2020-01-03T18:16:39.000Z Evening Standard 0
## 2970 DailyMirror 2020-01-03T18:16:00.000Z The Mirror 0
## 2971 DailyMirror 2020-01-03T18:16:00.000Z The Mirror 7
## 2972 guardian 2020-01-03T18:15:46.000Z The Guardian 1
## 2973 Telegraph 2020-01-03T18:15:45.000Z The Telegraph 2
## 2974 guardian 2020-01-03T18:15:40.000Z The Guardian 28
## 2975 TheSun 2020-01-03T18:12:46.000Z The Sun 2
## 2976 TheSun 2020-01-03T18:12:44.000Z The Sun 4
## 2977 thetimes 2020-01-03T18:11:46.000Z The Times 14
## 2978 DailyMirror 2020-01-03T18:11:00.000Z The Mirror 2
## 2979 TheSun 2020-01-03T18:10:47.000Z The Sun 0
## 2980 DailyMirror 2020-01-03T18:10:41.000Z The Mirror 2
## 2981 TheSun 2020-01-03T18:10:00.000Z The Sun 11
## 2982 DailyMirror 2020-01-03T18:09:56.000Z The Mirror 1
## 2983 DailyMirror 2020-01-03T18:09:00.000Z The Mirror 2
## 2984 DailyMirror 2020-01-03T18:08:08.000Z The Mirror 1
## 2985 DailyMirror 2020-01-03T18:08:04.000Z The Mirror 4
## 2986 DailyMirror 2020-01-03T18:08:00.000Z The Mirror 0
## 2987 DailyMirror 2020-01-03T18:08:00.000Z The Mirror 0
## 2988 EveningStandard 2020-01-03T18:06:48.000Z Evening Standard 0
## 2989 DailyMirror 2020-01-03T18:05:00.000Z The Mirror 0
## 2990 DailyMirror 2020-01-03T18:04:00.000Z The Mirror 4
## 2991 guardian 2020-01-03T18:03:57.000Z The Guardian 26
## 2992 TheSun 2020-01-03T18:02:55.000Z The Sun 3
## 2993 Telegraph 2020-01-03T18:01:08.000Z The Telegraph 48
## 2994 DailyMirror 2020-01-03T18:01:00.000Z The Mirror 0
## 2995 MetroUK 2020-01-03T18:00:11.000Z Metro 5
## 2996 DailyMailUK 2020-01-03T18:00:08.000Z Daily Mail U.K. 3
## 2997 DailyMirror 2020-01-03T18:00:00.000Z The Mirror 0
## 2998 TheSun 2020-01-03T18:00:00.000Z The Sun 13
## 2999 DailyMirror 2020-01-03T18:00:00.000Z The Mirror 0
## 3000 DailyMirror 2020-01-03T17:58:00.000Z The Mirror 2
## 3001 EveningStandard 2020-01-03T17:56:59.000Z Evening Standard 0
## 3002 DailyMirror 2020-01-03T17:56:19.000Z The Mirror 15
## 3003 thetimes 2020-01-03T17:55:09.000Z The Times 7
## 3004 guardian 2020-01-03T17:54:03.000Z The Guardian 7
## 3005 DailyMirror 2020-01-03T17:53:41.000Z The Mirror 0
## 3006 DailyMirror 2020-01-03T17:53:00.000Z The Mirror 1
## 3007 TheSun 2020-01-03T17:52:07.000Z The Sun 6
## 3008 DailyMirror 2020-01-03T17:52:00.000Z The Mirror 2
## 3009 Telegraph 2020-01-03T17:50:46.000Z The Telegraph 40
## 3010 TheSun 2020-01-03T17:50:00.000Z The Sun 7
## 3011 DailyMirror 2020-01-03T17:49:00.000Z The Mirror 2
## 3012 DailyMirror 2020-01-03T17:49:00.000Z The Mirror 4
## 3013 EveningStandard 2020-01-03T17:48:09.000Z Evening Standard 0
## 3014 DailyMirror 2020-01-03T17:47:00.000Z The Mirror 4
## 3015 DailyMirror 2020-01-03T17:46:51.000Z The Mirror 2
## 3016 TheSun 2020-01-03T17:42:55.000Z The Sun 2
## 3017 thetimes 2020-01-03T17:41:21.000Z The Times 4
## 3018 guardian 2020-01-03T17:40:34.000Z The Guardian 13
## 3019 DailyMailUK 2020-01-03T17:40:05.000Z Daily Mail U.K. 8
## 3020 DailyMirror 2020-01-03T17:40:00.000Z The Mirror 6
## 3021 TheSun 2020-01-03T17:40:00.000Z The Sun 7
## 3022 EveningStandard 2020-01-03T17:40:00.000Z Evening Standard 2
## 3023 TheSun 2020-01-03T17:38:01.000Z The Sun 6
## 3024 thetimes 2020-01-03T17:38:01.000Z The Times 1
## 3025 DailyMailUK 2020-01-03T17:33:06.000Z Daily Mail U.K. 3
## 3026 TheSun 2020-01-03T17:32:07.000Z The Sun 4
## 3027 Telegraph 2020-01-03T17:31:11.000Z The Telegraph 5
## 3028 EveningStandard 2020-01-03T17:31:09.000Z Evening Standard 1
## 3029 MetroUK 2020-01-03T17:31:07.000Z Metro 9
## 3030 guardian 2020-01-03T17:30:00.000Z The Guardian 10
## 3031 TheSun 2020-01-03T17:30:00.000Z The Sun 7
## 3032 EveningStandard 2020-01-03T17:27:18.000Z Evening Standard 1
## 3033 DailyMirror 2020-01-03T17:27:00.000Z The Mirror 0
## 3034 DailyMirror 2020-01-03T17:26:23.000Z The Mirror 4
## 3035 guardian 2020-01-03T17:25:11.000Z The Guardian 2
## 3036 guardian 2020-01-03T17:25:10.000Z The Guardian 16
## 3037 guardian 2020-01-03T17:25:09.000Z The Guardian 14
## 3038 DailyMirror 2020-01-03T17:25:00.000Z The Mirror 1
## 3039 DailyMirror 2020-01-03T17:24:16.000Z The Mirror 0
## 3040 DailyMirror 2020-01-03T17:23:57.000Z The Mirror 3
## 3041 EveningStandard 2020-01-03T17:23:16.000Z Evening Standard 0
## 3042 DailyMailUK 2020-01-03T17:22:43.000Z Daily Mail U.K. 15
## 3043 DailyMirror 2020-01-03T17:22:29.000Z The Mirror 1
## 3044 TheSun 2020-01-03T17:22:17.000Z The Sun 20
## 3045 DailyMailUK 2020-01-03T17:22:02.000Z Daily Mail U.K. 5
## 3046 guardian 2020-01-03T17:20:19.000Z The Guardian 24
## 3047 DailyMirror 2020-01-03T17:20:17.000Z The Mirror 2
## 3048 thetimes 2020-01-03T17:20:13.000Z The Times 5
## 3049 thetimes 2020-01-03T17:20:13.000Z The Times 2
## 3050 thetimes 2020-01-03T17:20:12.000Z The Times 2
## 3051 thetimes 2020-01-03T17:20:12.000Z The Times 10
## 3052 TheSun 2020-01-03T17:20:00.000Z The Sun 207
## 3053 DailyMirror 2020-01-03T17:18:11.000Z The Mirror 2
## 3054 DailyMirror 2020-01-03T17:18:00.000Z The Mirror 1
## 3055 EveningStandard 2020-01-03T17:16:22.000Z Evening Standard 0
## 3056 DailyMirror 2020-01-03T17:16:12.000Z The Mirror 1
## 3057 MetroUK 2020-01-03T17:16:07.000Z Metro 4
## 3058 Telegraph 2020-01-03T17:15:33.000Z The Telegraph 7
## 3059 DailyMirror 2020-01-03T17:15:26.000Z The Mirror 1
## 3060 DailyMirror 2020-01-03T17:13:16.000Z The Mirror 2
## 3061 TheSun 2020-01-03T17:12:24.000Z The Sun 0
## 3062 DailyMirror 2020-01-03T17:11:13.000Z The Mirror 4
## 3063 DailyMailUK 2020-01-03T17:11:03.000Z Daily Mail U.K. 2
## 3064 DailyMirror 2020-01-03T17:10:03.000Z The Mirror 2
## 3065 TheSun 2020-01-03T17:10:00.000Z The Sun 11
## 3066 EveningStandard 2020-01-03T17:09:26.000Z Evening Standard 0
## 3067 guardian 2020-01-03T17:09:04.000Z The Guardian 33
## 3068 TheSun 2020-01-03T17:08:56.000Z The Sun 3
## 3069 DailyMirror 2020-01-03T17:08:44.000Z The Mirror 1
## 3070 DailyMirror 2020-01-03T17:07:00.000Z The Mirror 0
## 3071 DailyMirror 2020-01-03T17:05:28.000Z The Mirror 2
## 3072 DailyMirror 2020-01-03T17:04:03.000Z The Mirror 2
## 3073 DailyMirror 2020-01-03T17:02:41.000Z The Mirror 9
## 3074 TheSun 2020-01-03T17:02:34.000Z The Sun 3
## 3075 DailyMirror 2020-01-03T17:01:41.000Z The Mirror 2
## 3076 EveningStandard 2020-01-03T17:01:35.000Z Evening Standard 1
## 3077 DailyMirror 2020-01-03T17:00:41.000Z The Mirror 1
## 3078 Telegraph 2020-01-03T17:00:38.000Z The Telegraph 2
## 3079 guardian 2020-01-03T17:00:32.000Z The Guardian 5
## 3080 guardian 2020-01-03T17:00:31.000Z The Guardian 11
## 3081 guardian 2020-01-03T17:00:30.000Z The Guardian 8
## 3082 guardian 2020-01-03T17:00:29.000Z The Guardian 4
## 3083 MetroUK 2020-01-03T17:00:15.000Z Metro 6
## 3084 TheSun 2020-01-03T17:00:00.000Z The Sun 44
## 3085 DailyMailUK 2020-01-03T16:59:02.000Z Daily Mail U.K. 21
## 3086 DailyMirror 2020-01-03T16:58:33.000Z The Mirror 2
## 3087 TheSun 2020-01-03T16:57:35.000Z The Sun 1
## 3088 MetroUK 2020-01-03T16:57:11.000Z Metro 6
## 3089 DailyMirror 2020-01-03T16:55:44.000Z The Mirror 3
## 3090 EveningStandard 2020-01-03T16:54:28.000Z Evening Standard 1
## 3091 DailyMirror 2020-01-03T16:53:42.000Z The Mirror 7
## 3092 DailyMirror 2020-01-03T16:53:34.000Z The Mirror 2
## 3093 DailyMirror 2020-01-03T16:52:32.000Z The Mirror 2
## 3094 TheSun 2020-01-03T16:52:30.000Z The Sun 1
## 3095 DailyMirror 2020-01-03T16:51:36.000Z The Mirror 4
## 3096 DailyMailUK 2020-01-03T16:51:03.000Z Daily Mail U.K. 7
## 3097 DailyMirror 2020-01-03T16:50:53.000Z The Mirror 4
## 3098 TheSun 2020-01-03T16:50:00.000Z The Sun 23
## 3099 DailyMirror 2020-01-03T16:49:51.000Z The Mirror 3
## 3100 guardian 2020-01-03T16:49:35.000Z The Guardian 6
## 3101 DailyMirror 2020-01-03T16:49:00.000Z The Mirror 2
## 3102 DailyMirror 2020-01-03T16:47:52.000Z The Mirror 7
## 3103 TheSun 2020-01-03T16:46:43.000Z The Sun 4
## 3104 thetimes 2020-01-03T16:46:41.000Z The Times 26
## 3105 EveningStandard 2020-01-03T16:46:39.000Z Evening Standard 0
## 3106 Telegraph 2020-01-03T16:45:48.000Z The Telegraph 4
## 3107 Telegraph 2020-01-03T16:45:30.000Z The Telegraph 4
## 3108 TheSun 2020-01-03T16:42:17.000Z The Sun 0
## 3109 guardian 2020-01-03T16:40:18.000Z The Guardian 56
## 3110 EveningStandard 2020-01-03T16:40:18.000Z Evening Standard 0
## 3111 DailyMailUK 2020-01-03T16:40:08.000Z Daily Mail U.K. 2
## 3112 TheSun 2020-01-03T16:40:00.000Z The Sun 4
## 3113 MetroUK 2020-01-03T16:39:00.000Z Metro 2
## 3114 DailyMirror 2020-01-03T16:38:37.000Z The Mirror 7
## 3115 TheSun 2020-01-03T16:38:22.000Z The Sun 3
## 3116 thetimes 2020-01-03T16:36:22.000Z The Times 0
## 3117 guardian 2020-01-03T16:34:52.000Z The Guardian 69
## 3118 EveningStandard 2020-01-03T16:33:24.000Z Evening Standard 0
## 3119 TheSun 2020-01-03T16:32:27.000Z The Sun 8
## 3120 MetroUK 2020-01-03T16:32:09.000Z Metro 5
## 3121 DailyMailUK 2020-01-03T16:31:05.000Z Daily Mail U.K. 1
## 3122 Telegraph 2020-01-03T16:30:33.000Z The Telegraph 11
## 3123 guardian 2020-01-03T16:30:28.000Z The Guardian 9
## 3124 TheSun 2020-01-03T16:30:00.000Z The Sun 13
## 3125 DailyMirror 2020-01-03T16:27:35.000Z The Mirror 1
## 3126 DailyMirror 2020-01-03T16:27:24.000Z The Mirror 3
## 3127 EveningStandard 2020-01-03T16:26:16.000Z Evening Standard 1
## 3128 thetimes 2020-01-03T16:26:02.000Z The Times 1
## 3129 TheSun 2020-01-03T16:22:07.000Z The Sun 1
## 3130 DailyMirror 2020-01-03T16:22:00.000Z The Mirror 1
## 3131 EveningStandard 2020-01-03T16:20:11.000Z Evening Standard 1
## 3132 TheSun 2020-01-03T16:20:00.000Z The Sun 4
## 3133 guardian 2020-01-03T16:19:08.000Z The Guardian 21
## 3134 DailyMailUK 2020-01-03T16:18:04.000Z Daily Mail U.K. 0
## 3135 TheSun 2020-01-03T16:17:44.000Z The Sun 1
## 3136 DailyMirror 2020-01-03T16:17:00.000Z The Mirror 1
## 3137 guardian 2020-01-03T16:15:51.000Z The Guardian 30
## 3138 EveningStandard 2020-01-03T16:14:14.000Z Evening Standard 0
## 3139 TheSun 2020-01-03T16:12:18.000Z The Sun 0
## 3140 guardian 2020-01-03T16:11:27.000Z The Guardian 74
## 3141 DailyMailUK 2020-01-03T16:11:03.000Z Daily Mail U.K. 7
## 3142 guardian 2020-01-03T16:10:15.000Z The Guardian 11
## 3143 DailyMirror 2020-01-03T16:10:07.000Z The Mirror 5
## 3144 TheSun 2020-01-03T16:10:00.000Z The Sun 15
## 3145 DailyMirror 2020-01-03T16:09:42.000Z The Mirror 3
## 3146 TheSun 2020-01-03T16:07:46.000Z The Sun 2
## 3147 thetimes 2020-01-03T16:07:40.000Z The Times 0
## 3148 thetimes 2020-01-03T16:07:40.000Z The Times 5
## 3149 EveningStandard 2020-01-03T16:07:16.000Z Evening Standard 2
## 3150 DailyMirror 2020-01-03T16:05:58.000Z The Mirror 0
## 3151 DailyMirror 2020-01-03T16:05:57.000Z The Mirror 1
## 3152 DailyMirror 2020-01-03T16:04:50.000Z The Mirror 1
## 3153 TheSun 2020-01-03T16:02:21.000Z The Sun 0
## 3154 DailyMirror 2020-01-03T16:01:44.000Z The Mirror 7
## 3155 thetimes 2020-01-03T16:01:25.000Z The Times 2
## 3156 Telegraph 2020-01-03T16:01:20.000Z The Telegraph 6
## 3157 TheSun 2020-01-03T16:01:07.000Z The Sun 2
## 3158 MetroUK 2020-01-03T16:00:21.000Z Metro 11
## 3159 guardian 2020-01-03T16:00:03.000Z The Guardian 3
## 3160 EveningStandard 2020-01-03T16:00:02.000Z Evening Standard 0
## 3161 TheSun 2020-01-03T16:00:00.000Z The Sun 8
## 3162 EveningStandard 2020-01-03T16:00:00.000Z Evening Standard 1
## 3163 DailyMailUK 2020-01-03T15:59:02.000Z Daily Mail U.K. 0
## 3164 TheSun 2020-01-03T15:57:19.000Z The Sun 7
## 3165 TheSun 2020-01-03T15:54:07.000Z The Sun 1
## 3166 DailyMirror 2020-01-03T15:53:52.000Z The Mirror 2
## 3167 TheSun 2020-01-03T15:53:00.000Z The Sun 4
## 3168 EveningStandard 2020-01-03T15:52:59.000Z Evening Standard 2
## 3169 MetroUK 2020-01-03T15:51:40.000Z Metro 1
## 3170 DailyMirror 2020-01-03T15:51:11.000Z The Mirror 4
## 3171 DailyMailUK 2020-01-03T15:51:03.000Z Daily Mail U.K. 8
## 3172 TheSun 2020-01-03T15:50:00.000Z The Sun 11
## 3173 DailyMirror 2020-01-03T15:47:53.000Z The Mirror 1
## 3174 guardian 2020-01-03T15:47:25.000Z The Guardian 2
## 3175 guardian 2020-01-03T15:47:23.000Z The Guardian 2
## 3176 guardian 2020-01-03T15:47:22.000Z The Guardian 1
## 3177 EveningStandard 2020-01-03T15:47:07.000Z Evening Standard 0
## 3178 Telegraph 2020-01-03T15:46:11.000Z The Telegraph 12
## 3179 guardian 2020-01-03T15:45:13.000Z The Guardian 40
## 3180 DailyMirror 2020-01-03T15:45:00.000Z The Mirror 3
## 3181 DailyMirror 2020-01-03T15:45:00.000Z The Mirror 0
## 3182 guardian 2020-01-03T15:45:00.000Z The Guardian 0
## 3183 guardian 2020-01-03T15:42:11.000Z The Guardian 5
## 3184 TheSun 2020-01-03T15:42:10.000Z The Sun 1
## 3185 EveningStandard 2020-01-03T15:41:10.000Z Evening Standard 0
## 3186 DailyMailUK 2020-01-03T15:41:05.000Z Daily Mail U.K. 0
## 3187 Telegraph 2020-01-03T15:40:47.000Z The Telegraph 12
## 3188 TheSun 2020-01-03T15:40:00.000Z The Sun 4
## 3189 DailyMirror 2020-01-03T15:39:20.000Z The Mirror 9
## 3190 DailyMirror 2020-01-03T15:38:00.000Z The Mirror 1
## 3191 EveningStandard 2020-01-03T15:35:20.000Z Evening Standard 0
## 3192 TheSun 2020-01-03T15:32:45.000Z The Sun 5
## 3193 DailyMirror 2020-01-03T15:32:41.000Z The Mirror 3
## 3194 TheSun 2020-01-03T15:32:21.000Z The Sun 4
## 3195 guardian 2020-01-03T15:31:19.000Z The Guardian 9
## 3196 DailyMirror 2020-01-03T15:31:19.000Z The Mirror 2
## 3197 DailyMailUK 2020-01-03T15:31:02.000Z Daily Mail U.K. 4
## 3198 DailyMirror 2020-01-03T15:30:27.000Z The Mirror 3
## 3199 Telegraph 2020-01-03T15:30:25.000Z The Telegraph 1
## 3200 EveningStandard 2020-01-03T15:30:19.000Z Evening Standard 1
## 3201 TheSun 2020-01-03T15:30:00.000Z The Sun 1
## 3202 DailyMirror 2020-01-03T15:29:21.000Z The Mirror 1
## 3203 DailyMirror 2020-01-03T15:26:34.000Z The Mirror 4
## 3204 EveningStandard 2020-01-03T15:26:09.000Z Evening Standard 0
## 3205 MetroUK 2020-01-03T15:26:03.000Z Metro 3
## 3206 DailyMirror 2020-01-03T15:26:00.000Z The Mirror 1
## 3207 thetimes 2020-01-03T15:25:09.000Z The Times 8
## 3208 guardian 2020-01-03T15:25:00.000Z The Guardian 13
## 3209 DailyMirror 2020-01-03T15:24:36.000Z The Mirror 5
## 3210 TheSun 2020-01-03T15:22:55.000Z The Sun 2
## 3211 DailyMirror 2020-01-03T15:22:00.000Z The Mirror 1
## 3212 guardian 2020-01-03T15:20:44.000Z The Guardian 10
## 3213 guardian 2020-01-03T15:20:43.000Z The Guardian 6
## 3214 guardian 2020-01-03T15:20:41.000Z The Guardian 47
## 3215 DailyMailUK 2020-01-03T15:20:07.000Z Daily Mail U.K. 5
## 3216 TheSun 2020-01-03T15:20:00.000Z The Sun 42
## 3217 DailyMirror 2020-01-03T15:18:00.000Z The Mirror 1
## 3218 EveningStandard 2020-01-03T15:17:40.000Z Evening Standard 0
## 3219 guardian 2020-01-03T15:16:41.000Z The Guardian 15
## 3220 Telegraph 2020-01-03T15:15:39.000Z The Telegraph 9
## 3221 TheSun 2020-01-03T15:12:43.000Z The Sun 1
## 3222 DailyMailUK 2020-01-03T15:10:06.000Z Daily Mail U.K. 0
## 3223 TheSun 2020-01-03T15:10:00.000Z The Sun 6
## 3224 EveningStandard 2020-01-03T15:09:42.000Z Evening Standard 0
## 3225 TheSun 2020-01-03T15:09:05.000Z The Sun 2
## 3226 DailyMirror 2020-01-03T15:09:00.000Z The Mirror 1
## 3227 thetimes 2020-01-03T15:08:27.000Z The Times 8
## 3228 guardian 2020-01-03T15:06:00.000Z The Guardian 19
## 3229 MetroUK 2020-01-03T15:05:03.000Z Metro 2
## 3230 DailyMailUK 2020-01-03T15:04:01.000Z Daily Mail U.K. 4
## 3231 DailyMirror 2020-01-03T15:03:50.000Z The Mirror 3
## 3232 DailyMirror 2020-01-03T15:03:19.000Z The Mirror 11
## 3233 guardian 2020-01-03T15:02:27.000Z The Guardian 26
## 3234 TheSun 2020-01-03T15:02:19.000Z The Sun 10
## 3235 Telegraph 2020-01-03T15:01:11.000Z The Telegraph 4
## 3236 EveningStandard 2020-01-03T15:01:03.000Z Evening Standard 0
## 3237 TheSun 2020-01-03T15:00:01.000Z The Sun 2
## 3238 DailyMailUK 2020-01-03T14:59:07.000Z Daily Mail U.K. 10
## 3239 DailyMirror 2020-01-03T14:58:57.000Z The Mirror 12
## 3240 EveningStandard 2020-01-03T14:57:52.000Z Evening Standard 0
## 3241 guardian 2020-01-03T14:56:34.000Z The Guardian 3
## 3242 guardian 2020-01-03T14:56:27.000Z The Guardian 68
## 3243 TheSun 2020-01-03T14:55:58.000Z The Sun 1
## 3244 guardian 2020-01-03T14:55:40.000Z The Guardian 5
## 3245 DailyMirror 2020-01-03T14:55:37.000Z The Mirror 1
## 3246 TheSun 2020-01-03T14:52:39.000Z The Sun 1
## 3247 EveningStandard 2020-01-03T14:50:32.000Z Evening Standard 0
## 3248 DailyMailUK 2020-01-03T14:50:06.000Z Daily Mail U.K. 2
## 3249 TheSun 2020-01-03T14:50:00.000Z The Sun 37
## 3250 DailyMirror 2020-01-03T14:49:06.000Z The Mirror 3
## 3251 guardian 2020-01-03T14:43:38.000Z The Guardian 9
## 3252 EveningStandard 2020-01-03T14:43:38.000Z Evening Standard 0
## 3253 DailyMirror 2020-01-03T14:43:27.000Z The Mirror 17
## 3254 TheSun 2020-01-03T14:42:44.000Z The Sun 13
## 3255 DailyMirror 2020-01-03T14:40:27.000Z The Mirror 2
## 3256 DailyMailUK 2020-01-03T14:40:10.000Z Daily Mail U.K. 4
## 3257 Telegraph 2020-01-03T14:40:09.000Z The Telegraph 1
## 3258 DailyMirror 2020-01-03T14:40:00.000Z The Mirror 0
## 3259 TheSun 2020-01-03T14:40:00.000Z The Sun 8
## 3260 DailyMirror 2020-01-03T14:39:17.000Z The Mirror 0
## 3261 DailyMirror 2020-01-03T14:36:39.000Z The Mirror 0
## 3262 MetroUK 2020-01-03T14:36:01.000Z Metro 4
## 3263 thetimes 2020-01-03T14:35:15.000Z The Times 2
## 3264 EveningStandard 2020-01-03T14:35:14.000Z Evening Standard 0
## 3265 Telegraph 2020-01-03T14:33:28.000Z The Telegraph 23
## 3266 guardian 2020-01-03T14:33:07.000Z The Guardian 10
## 3267 guardian 2020-01-03T14:33:06.000Z The Guardian 1
## 3268 DailyMirror 2020-01-03T14:32:54.000Z The Mirror 3
## 3269 TheSun 2020-01-03T14:32:17.000Z The Sun 2
## 3270 DailyMailUK 2020-01-03T14:32:03.000Z Daily Mail U.K. 1
## 3271 guardian 2020-01-03T14:31:18.000Z The Guardian 1
## 3272 Telegraph 2020-01-03T14:30:24.000Z The Telegraph 1
## 3273 MetroUK 2020-01-03T14:30:10.000Z Metro 22
## 3274 TheSun 2020-01-03T14:30:00.000Z The Sun 14
## 3275 EveningStandard 2020-01-03T14:28:25.000Z Evening Standard 0
## 3276 TheSun 2020-01-03T14:28:11.000Z The Sun 2
## 3277 DailyMailUK 2020-01-03T14:28:01.000Z Daily Mail U.K. 188
## 3278 DailyMirror 2020-01-03T14:25:50.000Z The Mirror 3
## 3279 MetroUK 2020-01-03T14:23:42.000Z Metro 3
## 3280 DailyMirror 2020-01-03T14:22:54.000Z The Mirror 8
## 3281 TheSun 2020-01-03T14:22:15.000Z The Sun 4
## 3282 guardian 2020-01-03T14:21:11.000Z The Guardian 34
## 3283 EveningStandard 2020-01-03T14:20:12.000Z Evening Standard 0
## 3284 TheSun 2020-01-03T14:20:00.000Z The Sun 3
## 3285 DailyMailUK 2020-01-03T14:19:07.000Z Daily Mail U.K. 10
## 3286 TheSun 2020-01-03T14:18:16.000Z The Sun 16
## 3287 EveningStandard 2020-01-03T14:16:17.000Z Evening Standard 0
## 3288 DailyMirror 2020-01-03T14:12:50.000Z The Mirror 2
## 3289 DailyMirror 2020-01-03T14:12:48.000Z The Mirror 4
## 3290 TheSun 2020-01-03T14:12:23.000Z The Sun 2
## 3291 TheSun 2020-01-03T14:11:10.000Z The Sun 8
## 3292 guardian 2020-01-03T14:11:08.000Z The Guardian 10
## 3293 DailyMailUK 2020-01-03T14:11:02.000Z Daily Mail U.K. 2
## 3294 DailyMirror 2020-01-03T14:11:00.000Z The Mirror 1
## 3295 TheSun 2020-01-03T14:10:37.000Z The Sun 6
## 3296 DailyMirror 2020-01-03T14:10:34.000Z The Mirror 5
## 3297 EveningStandard 2020-01-03T14:10:20.000Z Evening Standard 4
## 3298 TheSun 2020-01-03T14:10:00.000Z The Sun 63
## 3299 DailyMirror 2020-01-03T14:08:25.000Z The Mirror 0
## 3300 guardian 2020-01-03T14:07:39.000Z The Guardian 76
## 3301 DailyMirror 2020-01-03T14:05:00.000Z The Mirror 0
## 3302 guardian 2020-01-03T14:04:28.000Z The Guardian 16
## 3303 EveningStandard 2020-01-03T14:02:30.000Z Evening Standard 0
## 3304 TheSun 2020-01-03T14:02:29.000Z The Sun 0
## 3305 DailyMirror 2020-01-03T14:01:21.000Z The Mirror 1
## 3306 DailyMirror 2020-01-03T14:01:13.000Z The Mirror 8
## 3307 Telegraph 2020-01-03T14:00:35.000Z The Telegraph 6
## 3308 thetimes 2020-01-03T14:00:28.000Z The Times 3
## 3309 DailyMirror 2020-01-03T14:00:24.000Z The Mirror 9
## 3310 MetroUK 2020-01-03T14:00:09.000Z Metro 0
## 3311 TheSun 2020-01-03T14:00:00.000Z The Sun 33
## 3312 EveningStandard 2020-01-03T14:00:00.000Z Evening Standard 0
## 3313 DailyMailUK 2020-01-03T13:59:03.000Z Daily Mail U.K. 7
## 3314 DailyMirror 2020-01-03T13:58:00.000Z The Mirror 1
## 3315 EveningStandard 2020-01-03T13:56:15.000Z Evening Standard 1
## 3316 DailyMirror 2020-01-03T13:55:00.000Z The Mirror 4
## 3317 thetimes 2020-01-03T13:54:08.000Z The Times 4
## 3318 guardian 2020-01-03T13:54:04.000Z The Guardian 4
## 3319 DailyMirror 2020-01-03T13:53:17.000Z The Mirror 4
## 3320 TheSun 2020-01-03T13:52:11.000Z The Sun 3
## 3321 DailyMailUK 2020-01-03T13:51:05.000Z Daily Mail U.K. 3
## 3322 DailyMirror 2020-01-03T13:51:03.000Z The Mirror 5
## 3323 DailyMirror 2020-01-03T13:51:00.000Z The Mirror 0
## 3324 DailyMirror 2020-01-03T13:50:59.000Z The Mirror 2
## 3325 EveningStandard 2020-01-03T13:50:10.000Z Evening Standard 0
## 3326 TheSun 2020-01-03T13:50:00.000Z The Sun 25
## 3327 DailyMirror 2020-01-03T13:48:25.000Z The Mirror 0
## 3328 DailyMirror 2020-01-03T13:48:08.000Z The Mirror 3
## 3329 guardian 2020-01-03T13:48:00.000Z The Guardian 3
## 3330 DailyMirror 2020-01-03T13:47:58.000Z The Mirror 1
## 3331 Telegraph 2020-01-03T13:45:19.000Z The Telegraph 3
## 3332 EveningStandard 2020-01-03T13:45:13.000Z Evening Standard 0
## 3333 guardian 2020-01-03T13:44:16.000Z The Guardian 16
## 3334 Telegraph 2020-01-03T13:43:59.000Z The Telegraph 39
## 3335 thetimes 2020-01-03T13:42:17.000Z The Times 34
## 3336 TheSun 2020-01-03T13:42:15.000Z The Sun 2
## 3337 DailyMailUK 2020-01-03T13:41:04.000Z Daily Mail U.K. 1
## 3338 EveningStandard 2020-01-03T13:40:17.000Z Evening Standard 2
## 3339 TheSun 2020-01-03T13:40:00.000Z The Sun 6
## 3340 DailyMirror 2020-01-03T13:38:19.000Z The Mirror 1
## 3341 TheSun 2020-01-03T13:38:16.000Z The Sun 2
## 3342 DailyMirror 2020-01-03T13:38:00.000Z The Mirror 2
## 3343 MetroUK 2020-01-03T13:36:04.000Z Metro 1
## 3344 guardian 2020-01-03T13:34:18.000Z The Guardian 16
## 3345 EveningStandard 2020-01-03T13:34:10.000Z Evening Standard 2
## 3346 TheSun 2020-01-03T13:32:15.000Z The Sun 5
## 3347 DailyMirror 2020-01-03T13:31:51.000Z The Mirror 3
## 3348 DailyMailUK 2020-01-03T13:31:39.000Z Daily Mail U.K. 8
## 3349 DailyMirror 2020-01-03T13:31:24.000Z The Mirror 1
## 3350 DailyMirror 2020-01-03T13:31:07.000Z The Mirror 3
## 3351 DailyMailUK 2020-01-03T13:31:05.000Z Daily Mail U.K. 2
## 3352 DailyMirror 2020-01-03T13:30:28.000Z The Mirror 4
## 3353 Telegraph 2020-01-03T13:30:19.000Z The Telegraph 3
## 3354 EveningStandard 2020-01-03T13:30:13.000Z Evening Standard 1
## 3355 TheSun 2020-01-03T13:30:00.000Z The Sun 5
## 3356 guardian 2020-01-03T13:28:11.000Z The Guardian 11
## 3357 guardian 2020-01-03T13:28:10.000Z The Guardian 21
## 3358 guardian 2020-01-03T13:28:08.000Z The Guardian 17
## 3359 guardian 2020-01-03T13:28:08.000Z The Guardian 4
## 3360 DailyMirror 2020-01-04T09:38:00.000Z The Mirror 5
## 3361 DailyMirror 2020-01-04T09:36:00.000Z The Mirror 1
## 3362 MetroUK 2020-01-04T09:34:26.000Z Metro 1
## 3363 DailyMirror 2020-01-04T09:33:00.000Z The Mirror 3
## 3364 TheSun 2020-01-04T09:32:48.000Z The Sun 9
## 3365 guardian 2020-01-04T09:32:46.000Z The Guardian 2
## 3366 DailyMirror 2020-01-04T09:31:17.000Z The Mirror 4
## 3367 Telegraph 2020-01-04T09:30:52.000Z The Telegraph 175
## 3368 TheSun 2020-01-04T09:30:26.000Z The Sun 5
## 3369 DailyMailUK 2020-01-04T09:30:06.000Z Daily Mail U.K. 1
## 3370 MetroUK 2020-01-04T09:30:06.000Z Metro 8
## 3371 TheSun 2020-01-04T09:30:00.000Z The Sun 3
## 3372 DailyMirror 2020-01-04T09:28:59.000Z The Mirror 5
## 3373 thetimes 2020-01-04T09:26:53.000Z The Times 13
## 3374 DailyMirror 2020-01-04T09:25:00.000Z The Mirror 2
## 3375 TheSun 2020-01-04T09:22:13.000Z The Sun 4
## 3376 DailyMirror 2020-01-04T09:21:41.000Z The Mirror 4
## 3377 EveningStandard 2020-01-04T09:20:16.000Z Evening Standard 1
## 3378 TheSun 2020-01-04T09:20:00.000Z The Sun 35
## 3379 DailyMirror 2020-01-04T09:20:00.000Z The Mirror 2
## 3380 guardian 2020-01-04T09:19:11.000Z The Guardian 15
## 3381 DailyMirror 2020-01-04T09:15:00.000Z The Mirror 3
## 3382 DailyMailUK 2020-01-04T09:14:53.000Z Daily Mail U.K. 5
## 3383 TheSun 2020-01-04T09:12:13.000Z The Sun 3
## 3384 guardian 2020-01-04T09:10:13.000Z The Guardian 32
## 3385 TheSun 2020-01-04T09:10:00.000Z The Sun 16
## 3386 thetimes 2020-01-04T09:08:17.000Z The Times 112
## 3387 DailyMirror 2020-01-04T09:08:00.000Z The Mirror 5
## 3388 DailyMirror 2020-01-04T09:06:51.000Z The Mirror 0
## 3389 TheSun 2020-01-04T09:02:20.000Z The Sun 2
## 3390 DailyMirror 2020-01-04T09:01:49.000Z The Mirror 3
## 3391 Telegraph 2020-01-04T09:00:47.000Z The Telegraph 3
## 3392 MetroUK 2020-01-04T09:00:08.000Z Metro 4
## 3393 TheSun 2020-01-04T09:00:00.000Z The Sun 22
## 3394 guardian 2020-01-04T08:59:08.000Z The Guardian 15
## 3395 guardian 2020-01-04T08:59:07.000Z The Guardian 2
## 3396 DailyMirror 2020-01-04T08:56:00.000Z The Mirror 0
## 3397 DailyMailUK 2020-01-04T08:54:33.000Z Daily Mail U.K. 2
## 3398 DailyMirror 2020-01-04T08:53:21.000Z The Mirror 3
## 3399 TheSun 2020-01-04T08:52:36.000Z The Sun 3
## 3400 guardian 2020-01-04T08:51:38.000Z The Guardian 28
## 3401 TheSun 2020-01-04T08:50:00.000Z The Sun 56
## 3402 DailyMirror 2020-01-04T08:46:54.000Z The Mirror 4
## 3403 TheSun 2020-01-04T08:45:43.000Z The Sun 2
## 3404 DailyMirror 2020-01-04T08:45:00.000Z The Mirror 4
## 3405 DailyMirror 2020-01-04T08:44:00.000Z The Mirror 0
## 3406 DailyMirror 2020-01-04T08:43:08.000Z The Mirror 1
## 3407 TheSun 2020-01-04T08:42:46.000Z The Sun 2
## 3408 DailyMirror 2020-01-04T08:41:32.000Z The Mirror 9
## 3409 TheSun 2020-01-04T08:40:00.000Z The Sun 14
## 3410 DailyMirror 2020-01-04T08:38:44.000Z The Mirror 5
## 3411 DailyMirror 2020-01-04T08:37:38.000Z The Mirror 5
## 3412 guardian 2020-01-04T08:34:18.000Z The Guardian 22
## 3413 guardian 2020-01-04T08:34:17.000Z The Guardian 19
## 3414 guardian 2020-01-04T08:34:16.000Z The Guardian 1
## 3415 TheSun 2020-01-04T08:32:55.000Z The Sun 7
## 3416 DailyMailUK 2020-01-04T08:32:35.000Z Daily Mail U.K. 6
## 3417 DailyMirror 2020-01-04T08:32:00.000Z The Mirror 9
## 3418 Telegraph 2020-01-04T08:31:03.000Z The Telegraph 4
## 3419 DailyMirror 2020-01-04T08:31:00.000Z The Mirror 2
## 3420 MetroUK 2020-01-04T08:30:07.000Z Metro 4
## 3421 TheSun 2020-01-04T08:30:00.000Z The Sun 93
## 3422 MetroUK 2020-01-04T08:27:57.000Z Metro 8
## 3423 DailyMailUK 2020-01-04T08:26:20.000Z Daily Mail U.K. 7
## 3424 DailyMirror 2020-01-04T08:25:10.000Z The Mirror 6
## 3425 DailyMirror 2020-01-04T08:23:48.000Z The Mirror 10
## 3426 TheSun 2020-01-04T08:22:06.000Z The Sun 3
## 3427 guardian 2020-01-04T08:22:06.000Z The Guardian 79
## 3428 TheSun 2020-01-04T08:20:00.000Z The Sun 17
## 3429 DailyMirror 2020-01-04T08:18:36.000Z The Mirror 13
## 3430 Telegraph 2020-01-04T08:16:00.000Z The Telegraph 6
## 3431 DailyMirror 2020-01-04T08:15:00.000Z The Mirror 2
## 3432 EveningStandard 2020-01-04T08:13:57.000Z Evening Standard 1
## 3433 TheSun 2020-01-04T08:12:59.000Z The Sun 4
## 3434 MetroUK 2020-01-04T08:11:49.000Z Metro 5
## 3435 TheSun 2020-01-04T08:10:00.000Z The Sun 19
## 3436 guardian 2020-01-04T08:07:50.000Z The Guardian 29
## 3437 guardian 2020-01-04T08:05:14.000Z The Guardian 19
## 3438 TheSun 2020-01-04T08:02:08.000Z The Sun 3
## 3439 Telegraph 2020-01-04T08:00:27.000Z The Telegraph 2
## 3440 MetroUK 2020-01-04T08:00:12.000Z Metro 0
## 3441 TheSun 2020-01-04T08:00:00.000Z The Sun 3
## 3442 DailyMirror 2020-01-04T07:59:00.000Z The Mirror 5
## 3443 DailyMirror 2020-01-04T07:55:32.000Z The Mirror 2
## 3444 guardian 2020-01-04T07:54:21.000Z The Guardian 7
## 3445 TheSun 2020-01-04T07:52:24.000Z The Sun 3
## 3446 DailyMirror 2020-01-04T07:50:00.000Z The Mirror 7
## 3447 TheSun 2020-01-04T07:50:00.000Z The Sun 4
## 3448 DailyMirror 2020-01-04T07:46:41.000Z The Mirror 3
## 3449 guardian 2020-01-04T07:43:55.000Z The Guardian 9
## 3450 guardian 2020-01-04T07:43:54.000Z The Guardian 5
## 3451 guardian 2020-01-04T07:43:53.000Z The Guardian 58
## 3452 TheSun 2020-01-04T07:42:33.000Z The Sun 1
## 3453 guardian 2020-01-04T07:40:36.000Z The Guardian 18
## 3454 TheSun 2020-01-04T07:40:00.000Z The Sun 7
## 3455 TheSun 2020-01-04T07:32:42.000Z The Sun 4
## 3456 Telegraph 2020-01-04T07:30:51.000Z The Telegraph 3
## 3457 MetroUK 2020-01-04T07:30:02.000Z Metro 0
## 3458 TheSun 2020-01-04T07:30:00.000Z The Sun 13
## 3459 guardian 2020-01-04T07:29:46.000Z The Guardian 15
## 3460 DailyMirror 2020-01-04T07:27:00.000Z The Mirror 4
## 3461 TheSun 2020-01-04T07:22:52.000Z The Sun 10
## 3462 thetimes 2020-01-04T07:20:56.000Z The Times 18
## 3463 TheSun 2020-01-04T07:20:00.000Z The Sun 8
## 3464 guardian 2020-01-04T07:19:43.000Z The Guardian 34
## 3465 guardian 2020-01-04T07:19:43.000Z The Guardian 2
## 3466 guardian 2020-01-04T07:15:07.000Z The Guardian 149
## 3467 TheSun 2020-01-04T07:14:33.000Z The Sun 12
## 3468 DailyMirror 2020-01-04T07:13:00.000Z The Mirror 1
## 3469 TheSun 2020-01-04T07:12:09.000Z The Sun 3
## 3470 DailyMirror 2020-01-04T07:11:14.000Z The Mirror 6
## 3471 TheSun 2020-01-04T07:10:00.000Z The Sun 16
## 3472 DailyMirror 2020-01-04T07:06:00.000Z The Mirror 10
## 3473 guardian 2020-01-04T07:05:17.000Z The Guardian 0
## 3474 TheSun 2020-01-04T07:02:20.000Z The Sun 5
## 3475 DailyMirror 2020-01-04T07:01:00.000Z The Mirror 1
## 3476 Telegraph 2020-01-04T07:00:27.000Z The Telegraph 4
## 3477 thetimes 2020-01-04T07:00:23.000Z The Times 9
## 3478 MetroUK 2020-01-04T07:00:03.000Z Metro 2
## 3479 TheSun 2020-01-04T07:00:00.000Z The Sun 166
## 3480 guardian 2020-01-04T06:55:26.000Z The Guardian 22
## 3481 DailyMirror 2020-01-04T06:51:00.000Z The Mirror 128
## 3482 TheSun 2020-01-04T06:42:28.000Z The Sun 9
## 3483 thetimes 2020-01-04T06:40:28.000Z The Times 124
## 3484 TheSun 2020-01-04T06:40:00.000Z The Sun 14
## 3485 guardian 2020-01-04T06:30:51.000Z The Guardian 146
## 3486 Telegraph 2020-01-04T06:30:40.000Z The Telegraph 8
## 3487 Telegraph 2020-01-04T06:30:40.000Z The Telegraph 5
## 3488 MetroUK 2020-01-04T06:30:05.000Z Metro 5
## 3489 DailyMirror 2020-01-04T06:28:00.000Z The Mirror 0
## 3490 TheSun 2020-01-04T06:22:47.000Z The Sun 2
## 3491 thetimes 2020-01-04T06:21:14.000Z The Times 12
## 3492 TheSun 2020-01-04T06:20:00.000Z The Sun 12
## 3493 DailyMirror 2020-01-04T06:20:00.000Z The Mirror 39
## 3494 guardian 2020-01-04T06:07:44.000Z The Guardian 179
## 3495 TheSun 2020-01-04T06:02:21.000Z The Sun 2
## 3496 Telegraph 2020-01-04T06:00:30.000Z The Telegraph 4
## 3497 thetimes 2020-01-04T06:00:25.000Z The Times 21
## 3498 TheSun 2020-01-04T06:00:00.000Z The Sun 2
## 3499 DailyMirror 2020-01-04T05:55:40.000Z The Mirror 3
## 3500 DailyMirror 2020-01-04T05:53:19.000Z The Mirror 6
## 3501 DailyMirror 2020-01-04T05:53:00.000Z The Mirror 2
## 3502 DailyMirror 2020-01-04T05:52:48.000Z The Mirror 0
## 3503 TheSun 2020-01-04T05:42:41.000Z The Sun 1
## 3504 TheSun 2020-01-04T05:40:00.000Z The Sun 11
## 3505 DailyMirror 2020-01-04T05:36:22.000Z The Mirror 2
## 3506 guardian 2020-01-04T05:33:50.000Z The Guardian 249
## 3507 Telegraph 2020-01-04T05:31:12.000Z The Telegraph 25
## 3508 DailyMirror 2020-01-04T05:30:00.000Z The Mirror 5
## 3509 DailyMirror 2020-01-04T05:23:40.000Z The Mirror 1
## 3510 DailyMirror 2020-01-04T05:23:00.000Z The Mirror 1
## 3511 TheSun 2020-01-04T05:22:11.000Z The Sun 8
## 3512 TheSun 2020-01-04T05:20:00.000Z The Sun 27
## 3513 EveningStandard 2020-01-04T05:19:20.000Z Evening Standard 1
## 3514 TheSun 2020-01-04T05:02:08.000Z The Sun 3
## 3515 TheSun 2020-01-04T05:00:00.000Z The Sun 9
## 3516 guardian 2020-01-04T04:51:19.000Z The Guardian 0
## 3517 guardian 2020-01-04T04:51:18.000Z The Guardian 8
## 3518 TheSun 2020-01-04T04:42:58.000Z The Sun 2
## 3519 TheSun 2020-01-04T04:40:00.000Z The Sun 5
## 3520 DailyMirror 2020-01-04T04:36:00.000Z The Mirror 1
## 3521 DailyMirror 2020-01-04T04:36:00.000Z The Mirror 2
## 3522 guardian 2020-01-04T04:27:34.000Z The Guardian 109
## 3523 TheSun 2020-01-04T04:22:17.000Z The Sun 0
## 3524 TheSun 2020-01-04T04:20:00.000Z The Sun 10
## 3525 DailyMirror 2020-01-04T04:19:25.000Z The Mirror 1
## 3526 DailyMirror 2020-01-04T04:18:10.000Z The Mirror 1
## 3527 DailyMirror 2020-01-04T04:17:35.000Z The Mirror 7
## 3528 DailyMirror 2020-01-04T04:15:35.000Z The Mirror 2
## 3529 DailyMirror 2020-01-04T04:14:00.000Z The Mirror 10
## 3530 guardian 2020-01-04T04:07:27.000Z The Guardian 29
## 3531 TheSun 2020-01-04T04:02:31.000Z The Sun 2
## 3532 TheSun 2020-01-04T04:00:00.000Z The Sun 12
## 3533 TheSun 2020-01-04T03:42:33.000Z The Sun 0
## 3534 TheSun 2020-01-04T03:40:00.000Z The Sun 6
## 3535 guardian 2020-01-04T03:36:13.000Z The Guardian 25
## 3536 guardian 2020-01-04T03:24:50.000Z The Guardian 5
## 3537 TheSun 2020-01-04T03:22:52.000Z The Sun 2
## 3538 DailyMirror 2020-01-04T03:21:43.000Z The Mirror 11
## 3539 TheSun 2020-01-04T03:20:00.000Z The Sun 11
## 3540 DailyMirror 2020-01-04T03:16:30.000Z The Mirror 1
## 3541 DailyMirror 2020-01-04T03:16:00.000Z The Mirror 7
## 3542 DailyMirror 2020-01-04T03:05:00.000Z The Mirror 15
## 3543 TheSun 2020-01-04T03:02:15.000Z The Sun 6
## 3544 TheSun 2020-01-04T03:00:00.000Z The Sun 13
## 3545 TheSun 2020-01-04T02:42:47.000Z The Sun 6
## 3546 TheSun 2020-01-04T02:40:00.000Z The Sun 3
## 3547 guardian 2020-01-04T02:28:43.000Z The Guardian 23
## 3548 TheSun 2020-01-04T02:22:07.000Z The Sun 1
## 3549 TheSun 2020-01-04T02:20:00.000Z The Sun 12
## 3550 guardian 2020-01-04T02:18:13.000Z The Guardian 8
## 3551 TheSun 2020-01-04T02:02:28.000Z The Sun 1
## 3552 DailyMirror 2020-01-04T02:00:00.000Z The Mirror 3
## 3553 TheSun 2020-01-04T02:00:00.000Z The Sun 25
## 3554 TheSun 2020-01-04T01:42:47.000Z The Sun 4
## 3555 DailyMirror 2020-01-04T01:40:36.000Z The Mirror 5
## 3556 TheSun 2020-01-04T01:40:00.000Z The Sun 1
## 3557 DailyMirror 2020-01-04T01:37:00.000Z The Mirror 25
## 3558 guardian 2020-01-04T01:29:00.000Z The Guardian 1
## 3559 DailyMirror 2020-01-04T01:28:14.000Z The Mirror 5
## 3560 TheSun 2020-01-04T01:22:06.000Z The Sun 1
## 3561 TheSun 2020-01-04T01:20:00.000Z The Sun 43
## 3562 DailyMirror 2020-01-04T01:19:00.000Z The Mirror 1
## 3563 Telegraph 2020-01-04T01:08:13.000Z The Telegraph 24
## 3564 TheSun 2020-01-04T01:02:27.000Z The Sun 6
## 3565 DailyMirror 2020-01-04T01:00:00.000Z The Mirror 0
## 3566 TheSun 2020-01-04T01:00:00.000Z The Sun 10
## 3567 guardian 2020-01-04T00:59:27.000Z The Guardian 106
## 3568 DailyMirror 2020-01-04T00:55:40.000Z The Mirror 15
## 3569 guardian 2020-01-04T00:46:15.000Z The Guardian 6
## 3570 TheSun 2020-01-04T00:42:46.000Z The Sun 4
## 3571 TheSun 2020-01-04T00:40:00.000Z The Sun 10
## 3572 DailyMirror 2020-01-04T00:35:17.000Z The Mirror 2
## 3573 DailyMirror 2020-01-04T00:33:00.000Z The Mirror 0
## 3574 guardian 2020-01-04T00:29:56.000Z The Guardian 26
## 3575 DailyMirror 2020-01-04T00:27:00.000Z The Mirror 0
## 3576 TheSun 2020-01-04T00:22:28.000Z The Sun 0
## 3577 TheSun 2020-01-04T00:20:00.000Z The Sun 6
## 3578 guardian 2020-01-04T00:19:14.000Z The Guardian 231
## 3579 DailyMirror 2020-01-04T00:19:00.000Z The Mirror 1
## 3580 DailyMirror 2020-01-04T00:12:30.000Z The Mirror 12
## 3581 TheSun 2020-01-04T00:02:40.000Z The Sun 9
## 3582 guardian 2020-01-04T00:00:41.000Z The Guardian 4
## 3583 TheSun 2020-01-04T00:00:00.000Z The Sun 5
## 3584 DailyMirror 2020-01-04T00:00:00.000Z The Mirror 0
## 3585 DailyMailUK 2020-01-03T23:59:06.000Z Daily Mail U.K. 2
## 3586 TheSun 2020-01-03T23:52:49.000Z The Sun 1
## 3587 TheSun 2020-01-03T23:50:00.000Z The Sun 17
## 3588 EveningStandard 2020-01-03T23:48:52.000Z Evening Standard 1
## 3589 DailyMirror 2020-01-03T23:48:00.000Z The Mirror 4
## 3590 DailyMirror 2020-01-03T23:45:00.000Z The Mirror 10
## 3591 TheSun 2020-01-03T23:43:00.000Z The Sun 0
## 3592 guardian 2020-01-03T23:42:59.000Z The Guardian 0
## 3593 DailyMirror 2020-01-03T23:42:38.000Z The Mirror 10
## 3594 DailyMailUK 2020-01-03T23:40:10.000Z Daily Mail U.K. 11
## 3595 TheSun 2020-01-03T23:40:00.000Z The Sun 4
## 3596 Telegraph 2020-01-03T23:34:45.000Z The Telegraph 28
## 3597 DailyMirror 2020-01-03T23:33:00.000Z The Mirror 1
## 3598 TheSun 2020-01-03T23:32:10.000Z The Sun 49
## 3599 guardian 2020-01-03T23:31:31.000Z The Guardian 6
## 3600 DailyMailUK 2020-01-03T23:31:10.000Z Daily Mail U.K. 1
## 3601 TheSun 2020-01-03T23:30:00.000Z The Sun 5
## 3602 DailyMirror 2020-01-03T23:27:00.000Z The Mirror 2
## 3603 DailyMirror 2020-01-03T23:27:00.000Z The Mirror 7
## 3604 DailyMirror 2020-01-03T23:24:14.000Z The Mirror 3
## 3605 guardian 2020-01-03T23:23:45.000Z The Guardian 56
## 3606 TheSun 2020-01-03T23:22:19.000Z The Sun 11
## 3607 DailyMailUK 2020-01-03T23:21:02.000Z Daily Mail U.K. 3
## 3608 TheSun 2020-01-03T23:20:00.000Z The Sun 36
## 3609 guardian 2020-01-03T23:19:24.000Z The Guardian 9
## 3610 DailyMirror 2020-01-03T23:19:00.000Z The Mirror 1
## 3611 EveningStandard 2020-01-03T23:15:26.000Z Evening Standard 0
## 3612 TheSun 2020-01-03T23:12:29.000Z The Sun 4
## 3613 DailyMailUK 2020-01-03T23:11:06.000Z Daily Mail U.K. 3
## 3614 DailyMirror 2020-01-03T23:11:00.000Z The Mirror 1
## 3615 TheSun 2020-01-03T23:10:00.000Z The Sun 11
## 3616 guardian 2020-01-03T23:09:21.000Z The Guardian 4
## 3617 guardian 2020-01-03T23:09:20.000Z The Guardian 2
## 3618 guardian 2020-01-03T23:09:20.000Z The Guardian 0
## 3619 guardian 2020-01-03T23:09:19.000Z The Guardian 3
## 3620 guardian 2020-01-03T23:09:18.000Z The Guardian 0
## 3621 guardian 2020-01-03T23:09:16.000Z The Guardian 0
## 3622 TheSun 2020-01-03T23:02:41.000Z The Sun 7
## 3623 Telegraph 2020-01-03T23:00:53.000Z The Telegraph 4
## 3624 DailyMailUK 2020-01-03T23:00:02.000Z Daily Mail U.K. 2
## 3625 DailyMirror 2020-01-03T23:00:00.000Z The Mirror 0
## 3626 DailyMirror 2020-01-03T23:00:00.000Z The Mirror 3
## 3627 TheSun 2020-01-03T23:00:00.000Z The Sun 52
## 3628 DailyMirror 2020-01-03T23:00:00.000Z The Mirror 2
## 3629 DailyMirror 2020-01-03T22:59:00.000Z The Mirror 0
## 3630 DailyMirror 2020-01-03T22:59:00.000Z The Mirror 3
## 3631 DailyMirror 2020-01-03T22:59:00.000Z The Mirror 0
## 3632 EveningStandard 2020-01-03T22:56:46.000Z Evening Standard 2
## 3633 guardian 2020-01-03T22:55:47.000Z The Guardian 6
## 3634 DailyMirror 2020-01-03T22:54:00.000Z The Mirror 3
## 3635 DailyMirror 2020-01-03T22:52:53.000Z The Mirror 6
## 3636 TheSun 2020-01-03T22:52:51.000Z The Sun 4
## 3637 TheSun 2020-01-03T22:50:00.000Z The Sun 9
## 3638 DailyMirror 2020-01-03T22:47:00.000Z The Mirror 4
## 3639 guardian 2020-01-03T22:46:11.000Z The Guardian 3
## 3640 guardian 2020-01-03T22:46:09.000Z The Guardian 82
## 3641 TheSun 2020-01-03T22:42:10.000Z The Sun 4
## 3642 DailyMailUK 2020-01-03T22:41:06.000Z Daily Mail U.K. 6
## 3643 DailyMirror 2020-01-03T22:40:02.000Z The Mirror 4
## 3644 TheSun 2020-01-03T22:40:00.000Z The Sun 7
## 3645 EveningStandard 2020-01-03T22:38:15.000Z Evening Standard 5
## 3646 TheSun 2020-01-03T22:34:47.000Z The Sun 12
## 3647 DailyMirror 2020-01-03T22:33:34.000Z The Mirror 1
## 3648 TheSun 2020-01-03T22:33:24.000Z The Sun 10
## 3649 DailyMirror 2020-01-03T22:33:00.000Z The Mirror 1
## 3650 DailyMirror 2020-01-03T22:32:51.000Z The Mirror 2
## 3651 TheSun 2020-01-03T22:32:19.000Z The Sun 5
## 3652 Telegraph 2020-01-03T22:30:27.000Z The Telegraph 5
## 3653 DailyMirror 2020-01-03T22:30:12.000Z The Mirror 3
## 3654 DailyMirror 2020-01-03T22:30:00.000Z The Mirror 0
## 3655 TheSun 2020-01-03T22:30:00.000Z The Sun 6
## 3656 DailyMirror 2020-01-03T22:27:01.000Z The Mirror 9
## 3657 DailyMirror 2020-01-03T22:27:00.000Z The Mirror 3
## 3658 DailyMirror 2020-01-03T22:27:00.000Z The Mirror 1
## 3659 DailyMirror 2020-01-03T22:23:27.000Z The Mirror 3
## 3660 TheSun 2020-01-03T22:22:30.000Z The Sun 4
## 3661 DailyMirror 2020-01-03T22:22:00.000Z The Mirror 2
## 3662 DailyMailUK 2020-01-03T22:21:01.000Z Daily Mail U.K. 0
## 3663 guardian 2020-01-03T22:20:38.000Z The Guardian 154
## 3664 TheSun 2020-01-03T22:20:00.000Z The Sun 7
## 3665 EveningStandard 2020-01-03T22:19:37.000Z Evening Standard 1
## 3666 DailyMirror 2020-01-03T22:19:00.000Z The Mirror 14
## 3667 DailyMirror 2020-01-03T22:19:00.000Z The Mirror 3
## 3668 DailyMirror 2020-01-03T22:18:00.000Z The Mirror 4
## 3669 TheSun 2020-01-03T22:17:53.000Z The Sun 1
## 3670 DailyMirror 2020-01-03T22:17:28.000Z The Mirror 4
## 3671 DailyMirror 2020-01-03T22:17:00.000Z The Mirror 3
## 3672 DailyMirror 2020-01-03T22:16:41.000Z The Mirror 1
## 3673 DailyMirror 2020-01-03T22:16:27.000Z The Mirror 4
## 3674 Telegraph 2020-01-03T22:16:01.000Z The Telegraph 25
## 3675 DailyMirror 2020-01-03T22:16:00.000Z The Mirror 1
## 3676 DailyMirror 2020-01-03T22:15:23.000Z The Mirror 4
## 3677 DailyMirror 2020-01-03T22:14:29.000Z The Mirror 8
## 3678 DailyMirror 2020-01-03T22:14:21.000Z The Mirror 0
## 3679 TheSun 2020-01-03T22:12:59.000Z The Sun 1
## 3680 DailyMirror 2020-01-03T22:12:49.000Z The Mirror 4
## 3681 DailyMirror 2020-01-03T22:12:00.000Z The Mirror 1
## 3682 DailyMirror 2020-01-03T22:11:00.000Z The Mirror 1
## 3683 DailyMirror 2020-01-03T22:10:23.000Z The Mirror 5
## 3684 guardian 2020-01-03T22:10:18.000Z The Guardian 13
## 3685 TheSun 2020-01-03T22:10:00.000Z The Sun 13
## 3686 DailyMirror 2020-01-03T22:07:00.000Z The Mirror 6
## 3687 DailyMirror 2020-01-03T22:06:55.000Z The Mirror 3
## 3688 DailyMailUK 2020-01-03T22:03:27.000Z Daily Mail U.K. 65
## 3689 TheSun 2020-01-03T22:02:14.000Z The Sun 1
## 3690 DailyMirror 2020-01-03T22:02:00.000Z The Mirror 3
## 3691 EveningStandard 2020-01-03T22:01:15.000Z Evening Standard 0
## 3692 DailyMailUK 2020-01-03T22:01:07.000Z Daily Mail U.K. 2
## 3693 DailyMirror 2020-01-03T22:01:05.000Z The Mirror 16
## 3694 DailyMirror 2020-01-03T22:01:00.000Z The Mirror 5
## 3695 DailyMirror 2020-01-03T22:00:44.000Z The Mirror 1
## 3696 guardian 2020-01-03T22:00:22.000Z The Guardian 39
## 3697 MetroUK 2020-01-03T22:00:20.000Z Metro 1
## 3698 DailyMailUK 2020-01-03T22:00:02.000Z Daily Mail U.K. 0
## 3699 DailyMirror 2020-01-03T22:00:00.000Z The Mirror 0
## 3700 DailyMirror 2020-01-03T22:00:00.000Z The Mirror 1
## 3701 TheSun 2020-01-03T22:00:00.000Z The Sun 3
## 3702 DailyMirror 2020-01-03T21:59:51.000Z The Mirror 3
## 3703 DailyMirror 2020-01-03T21:59:24.000Z The Mirror 1
## 3704 DailyMirror 2020-01-03T21:59:00.000Z The Mirror 1
## 3705 DailyMirror 2020-01-03T21:58:50.000Z The Mirror 4
## 3706 DailyMirror 2020-01-03T21:54:00.000Z The Mirror 2
## 3707 guardian 2020-01-03T21:53:58.000Z The Guardian 9
## 3708 guardian 2020-01-03T21:53:57.000Z The Guardian 29
## 3709 TheSun 2020-01-03T21:53:27.000Z The Sun 4
## 3710 TheSun 2020-01-03T21:52:21.000Z The Sun 4
## 3711 DailyMirror 2020-01-03T21:50:38.000Z The Mirror 8
## 3712 guardian 2020-01-03T21:50:21.000Z The Guardian 25
## 3713 TheSun 2020-01-03T21:50:00.000Z The Sun 4
## 3714 DailyMirror 2020-01-03T21:47:00.000Z The Mirror 0
## 3715 TheSun 2020-01-03T21:42:28.000Z The Sun 1
## 3716 EveningStandard 2020-01-03T21:42:28.000Z Evening Standard 1
## 3717 DailyMailUK 2020-01-03T21:41:09.000Z Daily Mail U.K. 1
## 3718 guardian 2020-01-03T21:40:33.000Z The Guardian 15
## 3719 TheSun 2020-01-03T21:40:00.000Z The Sun 23
## 3720 DailyMirror 2020-01-03T21:40:00.000Z The Mirror 1
## 3721 DailyMirror 2020-01-03T21:39:00.000Z The Mirror 2
## 3722 thetimes 2020-01-03T21:37:39.000Z The Times 4
## 3723 MetroUK 2020-01-03T21:33:03.000Z Metro 6
## 3724 TheSun 2020-01-03T21:32:39.000Z The Sun 3
## 3725 Telegraph 2020-01-03T21:30:39.000Z The Telegraph 3
## 3726 guardian 2020-01-03T21:30:16.000Z The Guardian 20
## 3727 guardian 2020-01-03T21:30:14.000Z The Guardian 31
## 3728 guardian 2020-01-03T21:30:13.000Z The Guardian 23
## 3729 TheSun 2020-01-03T21:30:00.000Z The Sun 459
## 3730 TheSun 2020-01-03T21:30:00.000Z The Sun 3
## 3731 guardian 2020-01-03T21:29:30.000Z The Guardian 14
## 3732 DailyMirror 2020-01-03T21:28:00.000Z The Mirror 0
## 3733 DailyMirror 2020-01-03T21:28:00.000Z The Mirror 1
## 3734 DailyMirror 2020-01-03T21:28:00.000Z The Mirror 1
## 3735 DailyMirror 2020-01-03T21:27:08.000Z The Mirror 1
## 3736 DailyMirror 2020-01-03T21:26:00.000Z The Mirror 2
## 3737 DailyMailUK 2020-01-03T21:25:56.000Z Daily Mail U.K. 40
## 3738 TheSun 2020-01-03T21:25:23.000Z The Sun 12
## 3739 DailyMirror 2020-01-03T21:25:00.000Z The Mirror 1
## 3740 DailyMailUK 2020-01-03T21:24:51.000Z Daily Mail U.K. 9
## 3741 DailyMailUK 2020-01-03T21:24:40.000Z Daily Mail U.K. 17
## 3742 DailyMirror 2020-01-03T21:24:00.000Z The Mirror 0
## 3743 DailyMirror 2020-01-03T21:23:39.000Z The Mirror 3
## 3744 EveningStandard 2020-01-03T21:23:37.000Z Evening Standard 0
## 3745 TheSun 2020-01-03T21:22:39.000Z The Sun 5
## 3746 DailyMailUK 2020-01-03T21:21:11.000Z Daily Mail U.K. 5
## 3747 DailyMirror 2020-01-03T21:20:24.000Z The Mirror 8
## 3748 TheSun 2020-01-03T21:20:00.000Z The Sun 26
## 3749 thetimes 2020-01-03T21:19:43.000Z The Times 1
## 3750 guardian 2020-01-03T21:19:40.000Z The Guardian 2
## 3751 DailyMirror 2020-01-03T21:17:00.000Z The Mirror 1
## 3752 Telegraph 2020-01-03T21:15:53.000Z The Telegraph 2
## 3753 TheSun 2020-01-03T21:12:49.000Z The Sun 1
## 3754 DailyMirror 2020-01-03T21:12:00.000Z The Mirror 2
## 3755 DailyMirror 2020-01-03T21:11:25.000Z The Mirror 2
## 3756 DailyMirror 2020-01-03T21:10:00.000Z The Mirror 0
## 3757 DailyMirror 2020-01-03T21:10:00.000Z The Mirror 0
## 3758 TheSun 2020-01-03T21:10:00.000Z The Sun 5
## 3759 DailyMirror 2020-01-03T21:08:00.000Z The Mirror 4
## 3760 guardian 2020-01-03T21:07:41.000Z The Guardian 32
## 3761 DailyMirror 2020-01-03T21:07:20.000Z The Mirror 3
## 3762 DailyMirror 2020-01-03T21:06:00.000Z The Mirror 7
## 3763 EveningStandard 2020-01-03T21:04:55.000Z Evening Standard 0
## 3764 DailyMailUK 2020-01-03T21:02:36.000Z Daily Mail U.K. 79
## 3765 TheSun 2020-01-03T21:02:08.000Z The Sun 1
## 3766 DailyMirror 2020-01-03T21:02:00.000Z The Mirror 2
## 3767 Telegraph 2020-01-03T21:01:12.000Z The Telegraph 1
## 3768 thetimes 2020-01-03T21:01:12.000Z The Times 1
## 3769 DailyMirror 2020-01-03T21:01:00.000Z The Mirror 3
## 3770 MetroUK 2020-01-03T21:00:18.000Z Metro 1
## 3771 guardian 2020-01-03T21:00:12.000Z The Guardian 6
## 3772 DailyMailUK 2020-01-03T21:00:05.000Z Daily Mail U.K. 2
## 3773 DailyMirror 2020-01-03T21:00:00.000Z The Mirror 4
## 3774 TheSun 2020-01-03T21:00:00.000Z The Sun 209
## 3775 TheSun 2020-01-03T21:00:00.000Z The Sun 3
## 3776 DailyMirror 2020-01-03T20:59:00.000Z The Mirror 1
## 3777 DailyMirror 2020-01-03T20:54:00.000Z The Mirror 1
## 3778 DailyMirror 2020-01-03T20:53:00.000Z The Mirror 2
## 3779 DailyMirror 2020-01-03T20:53:00.000Z The Mirror 0
## 3780 DailyMirror 2020-01-03T20:53:00.000Z The Mirror 2
## 3781 TheSun 2020-01-03T20:52:53.000Z The Sun 0
## 3782 TheSun 2020-01-03T20:52:31.000Z The Sun 3
## 3783 TheSun 2020-01-03T20:50:00.000Z The Sun 10
## 3784 guardian 2020-01-03T20:49:34.000Z The Guardian 2
## 3785 DailyMirror 2020-01-03T20:49:00.000Z The Mirror 4
## 3786 EveningStandard 2020-01-03T20:47:35.000Z Evening Standard 0
## 3787 DailyMirror 2020-01-03T20:47:00.000Z The Mirror 5
## 3788 DailyMirror 2020-01-03T20:46:42.000Z The Mirror 3
## 3789 Telegraph 2020-01-03T20:45:44.000Z The Telegraph 1
## 3790 thetimes 2020-01-03T20:44:39.000Z The Times 2
## 3791 guardian 2020-01-03T20:44:26.000Z The Guardian 221
## 3792 DailyMirror 2020-01-03T20:43:00.000Z The Mirror 1
## 3793 TheSun 2020-01-03T20:42:41.000Z The Sun 5
## 3794 DailyMirror 2020-01-03T20:40:00.000Z The Mirror 0
## 3795 TheSun 2020-01-03T20:40:00.000Z The Sun 11
## 3796 guardian 2020-01-03T20:39:44.000Z The Guardian 12
## 3797 DailyMailUK 2020-01-03T20:39:05.000Z Daily Mail U.K. 5
## 3798 DailyMirror 2020-01-03T20:39:00.000Z The Mirror 1
## 3799 Telegraph 2020-01-03T20:36:33.000Z The Telegraph 7
## 3800 DailyMirror 2020-01-03T20:35:24.000Z The Mirror 9
## 3801 DailyMirror 2020-01-03T20:33:20.000Z The Mirror 1
## 3802 TheSun 2020-01-03T20:32:47.000Z The Sun 2
## 3803 DailyMailUK 2020-01-03T20:32:07.000Z Daily Mail U.K. 42
## 3804 DailyMirror 2020-01-03T20:31:07.000Z The Mirror 2
## 3805 MetroUK 2020-01-03T20:31:02.000Z Metro 1
## 3806 Telegraph 2020-01-03T20:30:59.000Z The Telegraph 8
## 3807 EveningStandard 2020-01-03T20:30:49.000Z Evening Standard 1
## 3808 DailyMirror 2020-01-03T20:30:00.000Z The Mirror 1
## 3809 TheSun 2020-01-03T20:30:00.000Z The Sun 7
## 3810 guardian 2020-01-03T20:29:49.000Z The Guardian 41
## 3811 DailyMirror 2020-01-03T20:28:00.000Z The Mirror 2
## 3812 DailyMirror 2020-01-03T20:28:00.000Z The Mirror 0
## 3813 thetimes 2020-01-03T20:27:55.000Z The Times 19
## 3814 DailyMirror 2020-01-03T20:26:00.000Z The Mirror 2
## 3815 Telegraph 2020-01-03T20:24:04.000Z The Telegraph 4
## 3816 TheSun 2020-01-03T20:22:57.000Z The Sun 3
## 3817 TheSun 2020-01-03T20:21:52.000Z The Sun 2
## 3818 DailyMirror 2020-01-03T20:20:07.000Z The Mirror 3
## 3819 DailyMailUK 2020-01-03T20:20:04.000Z Daily Mail U.K. 5
## 3820 TheSun 2020-01-03T20:20:00.000Z The Sun 6
## 3821 guardian 2020-01-03T20:18:17.000Z The Guardian 36
## 3822 DailyMirror 2020-01-03T20:18:04.000Z The Mirror 7
## 3823 EveningStandard 2020-01-03T20:17:03.000Z Evening Standard 0
## 3824 DailyMirror 2020-01-03T20:16:00.000Z The Mirror 2
## 3825 TheSun 2020-01-03T20:12:08.000Z The Sun 1
## 3826 DailyMirror 2020-01-03T20:11:51.000Z The Mirror 5
## 3827 DailyMirror 2020-01-03T20:11:00.000Z The Mirror 3
## 3828 DailyMirror 2020-01-03T20:10:53.000Z The Mirror 1
## 3829 thetimes 2020-01-03T20:10:10.000Z The Times 4
## 3830 DailyMirror 2020-01-03T20:10:00.000Z The Mirror 2
## 3831 TheSun 2020-01-03T20:10:00.000Z The Sun 21
## 3832 DailyMirror 2020-01-03T20:08:14.000Z The Mirror 5
## 3833 guardian 2020-01-03T20:08:11.000Z The Guardian 47
## 3834 DailyMirror 2020-01-03T20:08:00.000Z The Mirror 3
## 3835 DailyMirror 2020-01-03T20:08:00.000Z The Mirror 3
## 3836 DailyMirror 2020-01-03T20:05:28.000Z The Mirror 4
## 3837 DailyMirror 2020-01-03T20:05:00.000Z The Mirror 3
## 3838 DailyMirror 2020-01-03T20:04:00.000Z The Mirror 3
## 3839 TheSun 2020-01-03T20:02:18.000Z The Sun 8
## 3840 EveningStandard 2020-01-03T20:02:18.000Z Evening Standard 0
## 3841 DailyMirror 2020-01-03T20:01:42.000Z The Mirror 10
## 3842 Telegraph 2020-01-03T20:01:24.000Z The Telegraph 17
## 3843 DailyMirror 2020-01-03T20:01:00.000Z The Mirror 4
## 3844 DailyMirror 2020-01-03T20:01:00.000Z The Mirror 3
## 3845 MetroUK 2020-01-03T20:00:09.000Z Metro 1
## 3846 DailyMailUK 2020-01-03T20:00:03.000Z Daily Mail U.K. 3
## 3847 TheSun 2020-01-03T20:00:00.000Z The Sun 13
## 3848 DailyMirror 2020-01-03T19:59:35.000Z The Mirror 8
## 3849 DailyMirror 2020-01-03T19:58:00.000Z The Mirror 3
## 3850 guardian 2020-01-03T19:58:00.000Z The Guardian 19
## 3851 DailyMirror 2020-01-03T19:57:00.000Z The Mirror 2
## 3852 DailyMirror 2020-01-03T19:54:54.000Z The Mirror 1
## 3853 guardian 2020-01-03T19:54:11.000Z The Guardian 9
## 3854 thetimes 2020-01-03T19:53:16.000Z The Times 8
## 3855 DailyMirror 2020-01-03T19:53:00.000Z The Mirror 1
## 3856 TheSun 2020-01-03T19:52:14.000Z The Sun 7
## 3857 DailyMirror 2020-01-03T19:52:00.000Z The Mirror 37
## 3858 TheSun 2020-01-03T19:50:00.000Z The Sun 10
## 3859 DailyMirror 2020-01-03T19:50:00.000Z The Mirror 3
## 3860 guardian 2020-01-04T19:05:15.000Z The Guardian 111
## 3861 DailyMirror 2020-01-04T19:03:26.000Z The Mirror 24
## 3862 TheSun 2020-01-04T19:02:34.000Z The Sun 2
## 3863 guardian 2020-01-04T19:00:38.000Z The Guardian 35
## 3864 EveningStandard 2020-01-04T19:00:37.000Z Evening Standard 0
## 3865 Telegraph 2020-01-04T19:00:13.000Z The Telegraph 8
## 3866 MetroUK 2020-01-04T19:00:04.000Z Metro 0
## 3867 DailyMailUK 2020-01-04T19:00:04.000Z Daily Mail U.K. 12
## 3868 DailyMirror 2020-01-04T19:00:00.000Z The Mirror 13
## 3869 DailyMirror 2020-01-04T18:57:42.000Z The Mirror 39
## 3870 DailyMailUK 2020-01-04T18:56:34.000Z Daily Mail U.K. 26
## 3871 DailyMirror 2020-01-04T18:55:53.000Z The Mirror 2
## 3872 TheSun 2020-01-04T18:52:45.000Z The Sun 4
## 3873 thetimes 2020-01-04T18:51:22.000Z The Times 10
## 3874 DailyMirror 2020-01-04T18:51:00.000Z The Mirror 3
## 3875 guardian 2020-01-04T18:50:48.000Z The Guardian 12
## 3876 DailyMirror 2020-01-04T18:50:17.000Z The Mirror 1
## 3877 DailyMirror 2020-01-04T18:50:00.000Z The Mirror 1
## 3878 TheSun 2020-01-04T18:50:00.000Z The Sun 19
## 3879 DailyMirror 2020-01-04T18:49:19.000Z The Mirror 2
## 3880 DailyMirror 2020-01-04T18:46:53.000Z The Mirror 2
## 3881 DailyMirror 2020-01-04T18:45:00.000Z The Mirror 10
## 3882 TheSun 2020-01-04T18:42:55.000Z The Sun 4
## 3883 EveningStandard 2020-01-04T18:40:56.000Z Evening Standard 0
## 3884 guardian 2020-01-04T18:40:42.000Z The Guardian 38
## 3885 guardian 2020-01-04T18:40:40.000Z The Guardian 9
## 3886 DailyMailUK 2020-01-04T18:40:13.000Z Daily Mail U.K. 32
## 3887 DailyMailUK 2020-01-04T18:40:06.000Z Daily Mail U.K. 2
## 3888 TheSun 2020-01-04T18:40:00.000Z The Sun 7
## 3889 DailyMailUK 2020-01-04T18:38:17.000Z Daily Mail U.K. 4
## 3890 TheSun 2020-01-04T18:33:08.000Z The Sun 2
## 3891 DailyMailUK 2020-01-04T18:33:04.000Z Daily Mail U.K. 140
## 3892 DailyMirror 2020-01-04T18:33:00.000Z The Mirror 1
## 3893 guardian 2020-01-04T18:30:55.000Z The Guardian 17
## 3894 Telegraph 2020-01-04T18:30:14.000Z The Telegraph 3
## 3895 MetroUK 2020-01-04T18:30:07.000Z Metro 7
## 3896 TheSun 2020-01-04T18:30:00.000Z The Sun 13
## 3897 DailyMirror 2020-01-04T18:30:00.000Z The Mirror 6
## 3898 DailyMirror 2020-01-04T18:29:42.000Z The Mirror 2
## 3899 TheSun 2020-01-04T18:22:54.000Z The Sun 3
## 3900 guardian 2020-01-04T18:20:58.000Z The Guardian 5
## 3901 EveningStandard 2020-01-04T18:20:57.000Z Evening Standard 3
## 3902 DailyMailUK 2020-01-04T18:20:05.000Z Daily Mail U.K. 2
## 3903 TheSun 2020-01-04T18:20:00.000Z The Sun 4
## 3904 TheSun 2020-01-04T18:13:04.000Z The Sun 3
## 3905 DailyMailUK 2020-01-04T18:10:03.000Z Daily Mail U.K. 5
## 3906 TheSun 2020-01-04T18:10:00.000Z The Sun 10
## 3907 guardian 2020-01-04T18:08:09.000Z The Guardian 27
## 3908 TheSun 2020-01-04T18:07:35.000Z The Sun 1
## 3909 thetimes 2020-01-04T18:06:29.000Z The Times 12
## 3910 TheSun 2020-01-04T18:02:31.000Z The Sun 3
## 3911 EveningStandard 2020-01-04T18:00:38.000Z Evening Standard 0
## 3912 Telegraph 2020-01-04T18:00:11.000Z The Telegraph 6
## 3913 DailyMailUK 2020-01-04T18:00:04.000Z Daily Mail U.K. 13
## 3914 MetroUK 2020-01-04T18:00:02.000Z Metro 1
## 3915 TheSun 2020-01-04T18:00:00.000Z The Sun 18
## 3916 DailyMirror 2020-01-04T17:58:59.000Z The Mirror 21
## 3917 guardian 2020-01-04T17:58:32.000Z The Guardian 37
## 3918 DailyMirror 2020-01-04T17:57:00.000Z The Mirror 0
## 3919 EveningStandard 2020-01-04T17:55:35.000Z Evening Standard 35
## 3920 guardian 2020-01-04T17:52:59.000Z The Guardian 4
## 3921 DailyMirror 2020-01-04T17:52:58.000Z The Mirror 0
## 3922 guardian 2020-01-04T17:52:58.000Z The Guardian 19
## 3923 TheSun 2020-01-04T17:52:37.000Z The Sun 8
## 3924 DailyMirror 2020-01-04T17:50:42.000Z The Mirror 14
## 3925 TheSun 2020-01-04T17:50:31.000Z The Sun 18
## 3926 TheSun 2020-01-04T17:50:00.000Z The Sun 13
## 3927 DailyMirror 2020-01-04T17:47:00.000Z The Mirror 4
## 3928 guardian 2020-01-04T17:46:49.000Z The Guardian 4
## 3929 EveningStandard 2020-01-04T17:44:47.000Z Evening Standard 1
## 3930 TheSun 2020-01-04T17:42:48.000Z The Sun 7
## 3931 DailyMirror 2020-01-04T17:42:22.000Z The Mirror 1
## 3932 DailyMailUK 2020-01-04T17:40:08.000Z Daily Mail U.K. 6
## 3933 TheSun 2020-01-04T17:40:00.000Z The Sun 29
## 3934 DailyMailUK 2020-01-04T17:37:40.000Z Daily Mail U.K. 125
## 3935 guardian 2020-01-04T17:36:55.000Z The Guardian 13
## 3936 DailyMirror 2020-01-04T17:33:00.000Z The Mirror 3
## 3937 TheSun 2020-01-04T17:32:58.000Z The Sun 11
## 3938 TheSun 2020-01-04T17:31:12.000Z The Sun 6
## 3939 DailyMailUK 2020-01-04T17:30:47.000Z Daily Mail U.K. 10
## 3940 DailyMirror 2020-01-04T17:30:32.000Z The Mirror 5
## 3941 Telegraph 2020-01-04T17:30:15.000Z The Telegraph 137
## 3942 MetroUK 2020-01-04T17:30:05.000Z Metro 8
## 3943 TheSun 2020-01-04T17:30:00.000Z The Sun 6
## 3944 DailyMirror 2020-01-04T17:29:45.000Z The Mirror 6
## 3945 EveningStandard 2020-01-04T17:29:03.000Z Evening Standard 2
## 3946 DailyMirror 2020-01-04T17:29:00.000Z The Mirror 5
## 3947 Telegraph 2020-01-04T17:27:12.000Z The Telegraph 4
## 3948 guardian 2020-01-04T17:26:39.000Z The Guardian 3
## 3949 guardian 2020-01-04T17:26:38.000Z The Guardian 1
## 3950 guardian 2020-01-04T17:26:37.000Z The Guardian 27
## 3951 guardian 2020-01-04T17:26:35.000Z The Guardian 458
## 3952 thetimes 2020-01-04T17:26:11.000Z The Times 4
## 3953 DailyMirror 2020-01-04T17:26:01.000Z The Mirror 0
## 3954 guardian 2020-01-04T17:24:17.000Z The Guardian 17
## 3955 TheSun 2020-01-04T17:23:36.000Z The Sun 5
## 3956 TheSun 2020-01-04T17:22:19.000Z The Sun 3
## 3957 DailyMailUK 2020-01-04T17:20:06.000Z Daily Mail U.K. 2
## 3958 TheSun 2020-01-04T17:20:00.000Z The Sun 16
## 3959 DailyMirror 2020-01-04T17:17:00.000Z The Mirror 6
## 3960 DailyMirror 2020-01-04T17:16:00.000Z The Mirror 2
## 3961 guardian 2020-01-04T17:14:16.000Z The Guardian 2
## 3962 EveningStandard 2020-01-04T17:12:21.000Z Evening Standard 1
## 3963 TheSun 2020-01-04T17:12:19.000Z The Sun 1
## 3964 TheSun 2020-01-04T17:10:00.000Z The Sun 7
## 3965 DailyMirror 2020-01-04T17:08:11.000Z The Mirror 5
## 3966 thetimes 2020-01-04T17:06:02.000Z The Times 2
## 3967 guardian 2020-01-04T17:03:23.000Z The Guardian 4
## 3968 guardian 2020-01-04T17:03:22.000Z The Guardian 3
## 3969 guardian 2020-01-04T17:03:21.000Z The Guardian 1
## 3970 TheSun 2020-01-04T17:02:06.000Z The Sun 3
## 3971 Telegraph 2020-01-04T17:00:17.000Z The Telegraph 17
## 3972 DailyMailUK 2020-01-04T17:00:06.000Z Daily Mail U.K. 3
## 3973 MetroUK 2020-01-04T17:00:05.000Z Metro 4
## 3974 DailyMirror 2020-01-04T16:58:00.000Z The Mirror 0
## 3975 guardian 2020-01-04T16:56:12.000Z The Guardian 5
## 3976 EveningStandard 2020-01-04T16:56:11.000Z Evening Standard 0
## 3977 TheSun 2020-01-04T16:52:15.000Z The Sun 3
## 3978 Telegraph 2020-01-04T16:50:23.000Z The Telegraph 4
## 3979 TheSun 2020-01-04T16:50:00.000Z The Sun 32
## 3980 guardian 2020-01-04T16:45:19.000Z The Guardian 2
## 3981 guardian 2020-01-04T16:44:55.000Z The Guardian 22
## 3982 guardian 2020-01-04T16:44:39.000Z The Guardian 35
## 3983 TheSun 2020-01-04T16:42:28.000Z The Sun 2
## 3984 TheSun 2020-01-04T16:42:26.000Z The Sun 6
## 3985 DailyMailUK 2020-01-04T16:40:05.000Z Daily Mail U.K. 9
## 3986 TheSun 2020-01-04T16:40:00.000Z The Sun 16
## 3987 DailyMirror 2020-01-04T16:35:18.000Z The Mirror 4
## 3988 DailyMirror 2020-01-04T16:35:03.000Z The Mirror 4
## 3989 guardian 2020-01-04T16:34:34.000Z The Guardian 3
## 3990 DailyMirror 2020-01-04T16:33:00.000Z The Mirror 3
## 3991 TheSun 2020-01-04T16:32:36.000Z The Sun 7
## 3992 DailyMirror 2020-01-04T16:31:00.000Z The Mirror 2
## 3993 Telegraph 2020-01-04T16:30:13.000Z The Telegraph 3
## 3994 MetroUK 2020-01-04T16:30:12.000Z Metro 9
## 3995 TheSun 2020-01-04T16:30:00.000Z The Sun 55
## 3996 DailyMirror 2020-01-04T16:25:38.000Z The Mirror 5
## 3997 EveningStandard 2020-01-04T16:25:36.000Z Evening Standard 0
## 3998 guardian 2020-01-04T16:24:39.000Z The Guardian 35
## 3999 TheSun 2020-01-04T16:22:40.000Z The Sun 2
## 4000 Telegraph 2020-01-04T16:21:41.000Z The Telegraph 25
## 4001 DailyMirror 2020-01-04T16:21:32.000Z The Mirror 1
## 4002 thetimes 2020-01-04T16:20:44.000Z The Times 1
## 4003 DailyMailUK 2020-01-04T16:20:02.000Z Daily Mail U.K. 3
## 4004 TheSun 2020-01-04T16:20:00.000Z The Sun 11
## 4005 DailyMirror 2020-01-04T16:16:55.000Z The Mirror 12
## 4006 Telegraph 2020-01-04T16:16:27.000Z The Telegraph 6
## 4007 Telegraph 2020-01-04T16:16:12.000Z The Telegraph 20
## 4008 Telegraph 2020-01-04T16:16:04.000Z The Telegraph 4
## 4009 Telegraph 2020-01-04T16:16:00.000Z The Telegraph 6
## 4010 Telegraph 2020-01-04T16:15:15.000Z The Telegraph 11
## 4011 guardian 2020-01-04T16:15:11.000Z The Guardian 10
## 4012 guardian 2020-01-04T16:15:10.000Z The Guardian 13
## 4013 DailyMirror 2020-01-04T16:13:08.000Z The Mirror 6
## 4014 TheSun 2020-01-04T16:12:50.000Z The Sun 5
## 4015 TheSun 2020-01-04T16:10:00.000Z The Sun 26
## 4016 DailyMirror 2020-01-04T16:09:44.000Z The Mirror 19
## 4017 MetroUK 2020-01-04T16:09:19.000Z Metro 26
## 4018 DailyMirror 2020-01-04T16:06:46.000Z The Mirror 9
## 4019 guardian 2020-01-04T16:05:39.000Z The Guardian 9
## 4020 DailyMirror 2020-01-04T16:04:55.000Z The Mirror 24
## 4021 DailyMirror 2020-01-04T16:03:00.000Z The Mirror 3
## 4022 TheSun 2020-01-04T16:02:42.000Z The Sun 4
## 4023 Telegraph 2020-01-04T16:00:54.000Z The Telegraph 18
## 4024 Telegraph 2020-01-04T16:00:51.000Z The Telegraph 1
## 4025 thetimes 2020-01-04T16:00:36.000Z The Times 7
## 4026 MetroUK 2020-01-04T16:00:10.000Z Metro 4
## 4027 DailyMailUK 2020-01-04T16:00:02.000Z Daily Mail U.K. 6
## 4028 TheSun 2020-01-04T16:00:00.000Z The Sun 4
## 4029 DailyMailUK 2020-01-04T15:57:10.000Z Daily Mail U.K. 3
## 4030 DailyMirror 2020-01-04T15:57:00.000Z The Mirror 4
## 4031 guardian 2020-01-04T15:55:49.000Z The Guardian 26
## 4032 thetimes 2020-01-04T15:54:51.000Z The Times 5
## 4033 EveningStandard 2020-01-04T15:52:50.000Z Evening Standard 0
## 4034 TheSun 2020-01-04T15:52:50.000Z The Sun 1
## 4035 DailyMirror 2020-01-04T15:52:23.000Z The Mirror 4
## 4036 TheSun 2020-01-04T15:50:00.000Z The Sun 16
## 4037 guardian 2020-01-04T15:43:59.000Z The Guardian 13
## 4038 TheSun 2020-01-04T15:43:01.000Z The Sun 3
## 4039 DailyMailUK 2020-01-04T15:40:08.000Z Daily Mail U.K. 13
## 4040 TheSun 2020-01-04T15:40:00.000Z The Sun 9
## 4041 MetroUK 2020-01-04T15:39:07.000Z Metro 2
## 4042 DailyMirror 2020-01-04T15:38:45.000Z The Mirror 2
## 4043 EveningStandard 2020-01-04T15:35:19.000Z Evening Standard 3
## 4044 guardian 2020-01-04T15:33:16.000Z The Guardian 40
## 4045 DailyMirror 2020-01-04T15:33:10.000Z The Mirror 2
## 4046 DailyMirror 2020-01-04T15:33:00.000Z The Mirror 7
## 4047 TheSun 2020-01-04T15:32:23.000Z The Sun 10
## 4048 guardian 2020-01-04T15:32:22.000Z The Guardian 4
## 4049 DailyMirror 2020-01-04T15:31:00.000Z The Mirror 1
## 4050 Telegraph 2020-01-04T15:30:44.000Z The Telegraph 2
## 4051 MetroUK 2020-01-04T15:30:10.000Z Metro 0
## 4052 TheSun 2020-01-04T15:30:00.000Z The Sun 37
## 4053 thetimes 2020-01-04T15:28:16.000Z The Times 6
## 4054 TheSun 2020-01-04T15:26:17.000Z The Sun 3
## 4055 TheSun 2020-01-04T15:22:20.000Z The Sun 214
## 4056 guardian 2020-01-04T15:20:26.000Z The Guardian 2
## 4057 DailyMailUK 2020-01-04T15:20:06.000Z Daily Mail U.K. 4
## 4058 TheSun 2020-01-04T15:20:00.000Z The Sun 1
## 4059 EveningStandard 2020-01-04T15:16:27.000Z Evening Standard 1
## 4060 DailyMirror 2020-01-04T15:16:00.000Z The Mirror 6
## 4061 DailyMirror 2020-01-04T15:15:00.000Z The Mirror 1
## 4062 TheSun 2020-01-04T15:12:53.000Z The Sun 2
## 4063 Telegraph 2020-01-04T15:12:32.000Z The Telegraph 56
## 4064 TheSun 2020-01-04T15:10:00.000Z The Sun 6
## 4065 guardian 2020-01-04T15:08:47.000Z The Guardian 23
## 4066 TheSun 2020-01-04T15:06:47.000Z The Sun 1
## 4067 TheSun 2020-01-04T15:06:46.000Z The Sun 2
## 4068 guardian 2020-01-04T15:03:16.000Z The Guardian 2
## 4069 guardian 2020-01-04T15:03:15.000Z The Guardian 1
## 4070 guardian 2020-01-04T15:03:14.000Z The Guardian 12
## 4071 TheSun 2020-01-04T15:02:52.000Z The Sun 12
## 4072 Telegraph 2020-01-04T15:01:08.000Z The Telegraph 2
## 4073 MetroUK 2020-01-04T15:00:11.000Z Metro 15
## 4074 DailyMailUK 2020-01-04T15:00:05.000Z Daily Mail U.K. 7
## 4075 EveningStandard 2020-01-04T14:57:53.000Z Evening Standard 1
## 4076 guardian 2020-01-04T14:56:06.000Z The Guardian 318
## 4077 guardian 2020-01-04T14:55:14.000Z The Guardian 24
## 4078 DailyMirror 2020-01-04T14:54:23.000Z The Mirror 3
## 4079 guardian 2020-01-04T14:54:22.000Z The Guardian 31
## 4080 TheSun 2020-01-04T14:52:57.000Z The Sun 1
## 4081 TheSun 2020-01-04T14:50:00.000Z The Sun 20
## 4082 DailyMirror 2020-01-04T14:50:00.000Z The Mirror 1
## 4083 guardian 2020-01-04T14:49:04.000Z The Guardian 28
## 4084 DailyMirror 2020-01-04T14:43:39.000Z The Mirror 3
## 4085 DailyMailUK 2020-01-04T14:42:51.000Z Daily Mail U.K. 3
## 4086 DailyMirror 2020-01-04T14:42:42.000Z The Mirror 3
## 4087 TheSun 2020-01-04T14:42:10.000Z The Sun 5
## 4088 DailyMirror 2020-01-04T14:40:36.000Z The Mirror 5
## 4089 EveningStandard 2020-01-04T14:40:17.000Z Evening Standard 4
## 4090 DailyMailUK 2020-01-04T14:40:07.000Z Daily Mail U.K. 5
## 4091 TheSun 2020-01-04T14:40:00.000Z The Sun 11
## 4092 thetimes 2020-01-04T14:39:14.000Z The Times 267
## 4093 guardian 2020-01-04T14:38:11.000Z The Guardian 2
## 4094 guardian 2020-01-04T14:38:10.000Z The Guardian 11
## 4095 guardian 2020-01-04T14:38:08.000Z The Guardian 5
## 4096 guardian 2020-01-04T14:38:07.000Z The Guardian 6
## 4097 guardian 2020-01-04T14:38:05.000Z The Guardian 0
## 4098 guardian 2020-01-04T14:38:04.000Z The Guardian 7
## 4099 Telegraph 2020-01-04T14:36:50.000Z The Telegraph 110
## 4100 TheSun 2020-01-04T14:36:36.000Z The Sun 3
## 4101 MetroUK 2020-01-04T14:34:02.000Z Metro 7
## 4102 DailyMirror 2020-01-04T14:33:16.000Z The Mirror 1
## 4103 DailyMirror 2020-01-04T14:33:08.000Z The Mirror 1
## 4104 TheSun 2020-01-04T14:32:36.000Z The Sun 9
## 4105 DailyMirror 2020-01-04T14:32:00.000Z The Mirror 1
## 4106 DailyMirror 2020-01-04T14:32:00.000Z The Mirror 0
## 4107 MetroUK 2020-01-04T14:31:38.000Z Metro 3
## 4108 Telegraph 2020-01-04T14:31:03.000Z The Telegraph 2
## 4109 DailyMirror 2020-01-04T14:31:00.000Z The Mirror 1
## 4110 MetroUK 2020-01-04T14:30:10.000Z Metro 2
## 4111 TheSun 2020-01-04T14:30:00.000Z The Sun 16
## 4112 DailyMirror 2020-01-04T14:22:54.000Z The Mirror 4
## 4113 EveningStandard 2020-01-04T14:22:12.000Z Evening Standard 0
## 4114 TheSun 2020-01-04T14:22:12.000Z The Sun 5
## 4115 DailyMailUK 2020-01-04T14:20:08.000Z Daily Mail U.K. 1
## 4116 TheSun 2020-01-04T14:12:57.000Z The Sun 5
## 4117 TheSun 2020-01-04T14:10:00.000Z The Sun 35
## 4118 DailyMirror 2020-01-04T14:03:00.000Z The Mirror 0
## 4119 TheSun 2020-01-04T14:02:09.000Z The Sun 4
## 4120 Telegraph 2020-01-04T14:00:23.000Z The Telegraph 11
## 4121 MetroUK 2020-01-04T14:00:05.000Z Metro 4
## 4122 DailyMailUK 2020-01-04T14:00:03.000Z Daily Mail U.K. 42
## 4123 TheSun 2020-01-04T14:00:00.000Z The Sun 10
## 4124 EveningStandard 2020-01-04T13:59:16.000Z Evening Standard 0
## 4125 DailyMirror 2020-01-04T13:56:46.000Z The Mirror 17
## 4126 TheSun 2020-01-04T13:52:25.000Z The Sun 4
## 4127 thetimes 2020-01-04T13:52:25.000Z The Times 14
## 4128 TheSun 2020-01-04T13:52:24.000Z The Sun 6
## 4129 TheSun 2020-01-04T13:50:00.000Z The Sun 36
## 4130 MetroUK 2020-01-04T13:48:16.000Z Metro 23
## 4131 guardian 2020-01-04T13:48:06.000Z The Guardian 4
## 4132 DailyMirror 2020-01-04T13:44:26.000Z The Mirror 11
## 4133 guardian 2020-01-04T13:44:01.000Z The Guardian 34
## 4134 MetroUK 2020-01-04T13:43:24.000Z Metro 7
## 4135 TheSun 2020-01-04T13:42:52.000Z The Sun 56
## 4136 DailyMailUK 2020-01-04T13:42:50.000Z Daily Mail U.K. 23
## 4137 MetroUK 2020-01-04T13:42:22.000Z Metro 14
## 4138 DailyMailUK 2020-01-04T13:40:06.000Z Daily Mail U.K. 6
## 4139 TheSun 2020-01-04T13:40:00.000Z The Sun 21
## 4140 EveningStandard 2020-01-04T13:39:09.000Z Evening Standard 0
## 4141 DailyMirror 2020-01-04T13:35:43.000Z The Mirror 6
## 4142 DailyMirror 2020-01-04T13:33:32.000Z The Mirror 2
## 4143 TheSun 2020-01-04T13:32:59.000Z The Sun 5
## 4144 guardian 2020-01-04T13:32:59.000Z The Guardian 65
## 4145 DailyMirror 2020-01-04T13:32:00.000Z The Mirror 3
## 4146 DailyMirror 2020-01-04T13:32:00.000Z The Mirror 2
## 4147 Telegraph 2020-01-04T13:31:11.000Z The Telegraph 10
## 4148 MetroUK 2020-01-04T13:30:09.000Z Metro 1
## 4149 TheSun 2020-01-04T13:30:00.000Z The Sun 8
## 4150 DailyMirror 2020-01-04T13:28:19.000Z The Mirror 7
## 4151 TheSun 2020-01-04T13:26:10.000Z The Sun 5
## 4152 guardian 2020-01-04T13:24:41.000Z The Guardian 26
## 4153 DailyMirror 2020-01-04T13:24:29.000Z The Mirror 4
## 4154 DailyMirror 2020-01-04T13:22:53.000Z The Mirror 2
## 4155 guardian 2020-01-04T13:22:49.000Z The Guardian 21
## 4156 TheSun 2020-01-04T13:22:09.000Z The Sun 279
## 4157 guardian 2020-01-04T13:21:51.000Z The Guardian 16
## 4158 guardian 2020-01-04T13:21:13.000Z The Guardian 12
## 4159 DailyMailUK 2020-01-04T13:20:04.000Z Daily Mail U.K. 7
## 4160 TheSun 2020-01-04T13:20:00.000Z The Sun 23
## 4161 EveningStandard 2020-01-04T13:18:15.000Z Evening Standard 1
## 4162 DailyMirror 2020-01-04T13:16:00.000Z The Mirror 2
## 4163 TheSun 2020-01-04T13:12:22.000Z The Sun 14
## 4164 DailyMirror 2020-01-04T13:10:55.000Z The Mirror 4
## 4165 TheSun 2020-01-04T13:10:00.000Z The Sun 33
## 4166 guardian 2020-01-04T13:09:25.000Z The Guardian 8
## 4167 DailyMirror 2020-01-04T13:05:00.000Z The Mirror 0
## 4168 TheSun 2020-01-04T13:02:30.000Z The Sun 4
## 4169 Telegraph 2020-01-04T13:00:44.000Z The Telegraph 14
## 4170 EveningStandard 2020-01-04T13:00:33.000Z Evening Standard 1
## 4171 MetroUK 2020-01-04T13:00:12.000Z Metro 3
## 4172 DailyMailUK 2020-01-04T13:00:03.000Z Daily Mail U.K. 1
## 4173 guardian 2020-01-04T12:59:50.000Z The Guardian 1
## 4174 DailyMirror 2020-01-04T12:58:19.000Z The Mirror 1
## 4175 guardian 2020-01-04T12:56:38.000Z The Guardian 7
## 4176 DailyMirror 2020-01-04T12:56:21.000Z The Mirror 3
## 4177 thetimes 2020-01-04T12:53:40.000Z The Times 40
## 4178 TheSun 2020-01-04T12:53:00.000Z The Sun 6
## 4179 DailyMirror 2020-01-04T12:51:27.000Z The Mirror 4
## 4180 TheSun 2020-01-04T12:50:00.000Z The Sun 28
## 4181 guardian 2020-01-04T12:44:55.000Z The Guardian 10
## 4182 TheSun 2020-01-04T12:42:56.000Z The Sun 2
## 4183 DailyMirror 2020-01-04T12:42:50.000Z The Mirror 2
## 4184 EveningStandard 2020-01-04T12:41:56.000Z Evening Standard 0
## 4185 DailyMirror 2020-01-04T12:40:17.000Z The Mirror 4
## 4186 EveningStandard 2020-01-04T12:40:13.000Z Evening Standard 0
## 4187 DailyMailUK 2020-01-04T12:40:05.000Z Daily Mail U.K. 9
## 4188 TheSun 2020-01-04T12:40:00.000Z The Sun 50
## 4189 guardian 2020-01-04T12:35:17.000Z The Guardian 30
## 4190 DailyMirror 2020-01-04T12:34:33.000Z The Mirror 3
## 4191 TheSun 2020-01-04T12:32:21.000Z The Sun 5
## 4192 DailyMirror 2020-01-04T12:32:00.000Z The Mirror 3
## 4193 DailyMirror 2020-01-04T12:31:00.000Z The Mirror 8
## 4194 Telegraph 2020-01-04T12:30:26.000Z The Telegraph 5
## 4195 guardian 2020-01-04T12:30:11.000Z The Guardian 34
## 4196 MetroUK 2020-01-04T12:30:02.000Z Metro 51
## 4197 TheSun 2020-01-04T12:30:00.000Z The Sun 14
## 4198 DailyMirror 2020-01-04T12:26:21.000Z The Mirror 4
## 4199 guardian 2020-01-04T12:25:30.000Z The Guardian 8
## 4200 DailyMirror 2020-01-04T12:25:18.000Z The Mirror 10
## 4201 EveningStandard 2020-01-04T12:22:30.000Z Evening Standard 0
## 4202 TheSun 2020-01-04T12:22:30.000Z The Sun 5
## 4203 DailyMailUK 2020-01-04T12:20:06.000Z Daily Mail U.K. 7
## 4204 TheSun 2020-01-04T12:20:00.000Z The Sun 9
## 4205 guardian 2020-01-04T12:19:03.000Z The Guardian 4
## 4206 guardian 2020-01-04T12:15:38.000Z The Guardian 3
## 4207 DailyMirror 2020-01-04T12:13:00.000Z The Mirror 2
## 4208 DailyMirror 2020-01-04T12:13:00.000Z The Mirror 2
## 4209 TheSun 2020-01-04T12:12:40.000Z The Sun 14
## 4210 DailyMirror 2020-01-04T12:12:10.000Z The Mirror 5
## 4211 guardian 2020-01-04T12:12:03.000Z The Guardian 7
## 4212 guardian 2020-01-04T12:12:02.000Z The Guardian 2
## 4213 DailyMirror 2020-01-04T12:10:13.000Z The Mirror 0
## 4214 TheSun 2020-01-04T12:10:00.000Z The Sun 11
## 4215 guardian 2020-01-04T12:09:44.000Z The Guardian 10
## 4216 DailyMirror 2020-01-04T12:09:05.000Z The Mirror 1
## 4217 DailyMirror 2020-01-04T12:06:32.000Z The Mirror 14
## 4218 guardian 2020-01-04T12:03:56.000Z The Guardian 14
## 4219 thetimes 2020-01-04T12:02:01.000Z The Times 13
## 4220 TheSun 2020-01-04T12:01:58.000Z The Sun 5
## 4221 Telegraph 2020-01-04T12:01:11.000Z The Telegraph 3
## 4222 MetroUK 2020-01-04T12:00:04.000Z Metro 0
## 4223 guardian 2020-01-04T12:00:03.000Z The Guardian 23
## 4224 EveningStandard 2020-01-04T12:00:02.000Z Evening Standard 0
## 4225 DailyMailUK 2020-01-04T12:00:01.000Z Daily Mail U.K. 0
## 4226 TheSun 2020-01-04T12:00:00.000Z The Sun 7
## 4227 DailyMirror 2020-01-04T11:57:54.000Z The Mirror 4
## 4228 DailyMirror 2020-01-04T11:56:49.000Z The Mirror 3
## 4229 TheSun 2020-01-04T11:52:10.000Z The Sun 6
## 4230 DailyMirror 2020-01-04T11:50:37.000Z The Mirror 3
## 4231 TheSun 2020-01-04T11:50:00.000Z The Sun 8
## 4232 guardian 2020-01-04T11:48:17.000Z The Guardian 1
## 4233 guardian 2020-01-04T11:48:15.000Z The Guardian 1
## 4234 guardian 2020-01-04T11:48:14.000Z The Guardian 16
## 4235 MetroUK 2020-01-04T11:47:54.000Z Metro 3
## 4236 MetroUK 2020-01-04T11:46:53.000Z Metro 4
## 4237 DailyMirror 2020-01-04T11:46:00.000Z The Mirror 2
## 4238 TheSun 2020-01-04T11:43:04.000Z The Sun 2
## 4239 guardian 2020-01-04T11:43:04.000Z The Guardian 86
## 4240 EveningStandard 2020-01-04T11:40:06.000Z Evening Standard 3
## 4241 DailyMailUK 2020-01-04T11:40:03.000Z Daily Mail U.K. 4
## 4242 TheSun 2020-01-04T11:40:00.000Z The Sun 25
## 4243 DailyMirror 2020-01-04T11:38:45.000Z The Mirror 6
## 4244 DailyMirror 2020-01-04T11:38:00.000Z The Mirror 4
## 4245 DailyMirror 2020-01-04T11:37:00.000Z The Mirror 3
## 4246 DailyMailUK 2020-01-04T11:33:58.000Z Daily Mail U.K. 3
## 4247 guardian 2020-01-04T11:33:12.000Z The Guardian 27
## 4248 DailyMirror 2020-01-04T11:32:00.000Z The Mirror 1
## 4249 guardian 2020-01-04T11:31:08.000Z The Guardian 19
## 4250 Telegraph 2020-01-04T11:30:26.000Z The Telegraph 20
## 4251 guardian 2020-01-04T11:30:20.000Z The Guardian 41
## 4252 MetroUK 2020-01-04T11:30:04.000Z Metro 2
## 4253 TheSun 2020-01-04T11:30:00.000Z The Sun 10
## 4254 DailyMirror 2020-01-04T11:30:00.000Z The Mirror 1
## 4255 DailyMirror 2020-01-04T11:29:56.000Z The Mirror 3
## 4256 DailyMirror 2020-01-04T11:27:00.000Z The Mirror 1
## 4257 DailyMirror 2020-01-04T11:26:39.000Z The Mirror 3
## 4258 TheSun 2020-01-04T11:22:53.000Z The Sun 9
## 4259 guardian 2020-01-04T11:22:33.000Z The Guardian 4
## 4260 EveningStandard 2020-01-04T11:20:59.000Z Evening Standard 6
## 4261 DailyMirror 2020-01-04T11:20:27.000Z The Mirror 16
## 4262 DailyMailUK 2020-01-04T11:20:06.000Z Daily Mail U.K. 20
## 4263 TheSun 2020-01-04T11:20:00.000Z The Sun 11
## 4264 TheSun 2020-01-04T11:19:05.000Z The Sun 8
## 4265 EveningStandard 2020-01-04T11:18:56.000Z Evening Standard 9
## 4266 guardian 2020-01-04T11:18:16.000Z The Guardian 11
## 4267 DailyMirror 2020-01-04T11:17:44.000Z The Mirror 2
## 4268 DailyMirror 2020-01-04T11:16:00.000Z The Mirror 3
## 4269 thetimes 2020-01-04T11:15:49.000Z The Times 6
## 4270 DailyMirror 2020-01-04T11:12:54.000Z The Mirror 6
## 4271 TheSun 2020-01-04T11:12:52.000Z The Sun 1
## 4272 DailyMirror 2020-01-04T11:10:00.000Z The Mirror 1
## 4273 TheSun 2020-01-04T11:10:00.000Z The Sun 18
## 4274 guardian 2020-01-04T11:07:12.000Z The Guardian 38
## 4275 DailyMirror 2020-01-04T11:06:52.000Z The Mirror 2
## 4276 guardian 2020-01-04T11:06:47.000Z The Guardian 12
## 4277 DailyMirror 2020-01-04T11:06:22.000Z The Mirror 10
## 4278 DailyMirror 2020-01-04T11:04:00.000Z The Mirror 0
## 4279 EveningStandard 2020-01-04T11:03:59.000Z Evening Standard 2
## 4280 TheSun 2020-01-04T11:03:03.000Z The Sun 5
## 4281 TheSun 2020-01-04T11:03:02.000Z The Sun 2
## 4282 Telegraph 2020-01-04T11:01:13.000Z The Telegraph 8
## 4283 MetroUK 2020-01-04T11:00:12.000Z Metro 4
## 4284 DailyMailUK 2020-01-04T11:00:04.000Z Daily Mail U.K. 3
## 4285 TheSun 2020-01-04T11:00:00.000Z The Sun 43
## 4286 DailyMirror 2020-01-04T11:00:00.000Z The Mirror 0
## 4287 thetimes 2020-01-04T10:57:04.000Z The Times 71
## 4288 DailyMirror 2020-01-04T10:55:00.000Z The Mirror 1
## 4289 TheSun 2020-01-04T10:52:08.000Z The Sun 1
## 4290 TheSun 2020-01-04T10:50:00.000Z The Sun 20
## 4291 MetroUK 2020-01-04T10:49:22.000Z Metro 9
## 4292 guardian 2020-01-04T10:46:13.000Z The Guardian 18
## 4293 TheSun 2020-01-04T10:42:18.000Z The Sun 4
## 4294 DailyMirror 2020-01-04T10:42:16.000Z The Mirror 1
## 4295 MetroUK 2020-01-04T10:41:07.000Z Metro 1
## 4296 DailyMirror 2020-01-04T10:41:00.000Z The Mirror 200
## 4297 DailyMirror 2020-01-04T10:40:30.000Z The Mirror 3
## 4298 EveningStandard 2020-01-04T10:40:20.000Z Evening Standard 4
## 4299 DailyMailUK 2020-01-04T10:40:04.000Z Daily Mail U.K. 0
## 4300 TheSun 2020-01-04T10:40:00.000Z The Sun 11
## 4301 thetimes 2020-01-04T10:38:23.000Z The Times 8
## 4302 DailyMirror 2020-01-04T10:37:01.000Z The Mirror 6
## 4303 guardian 2020-01-04T10:36:25.000Z The Guardian 81
## 4304 MetroUK 2020-01-04T10:36:08.000Z Metro 5
## 4305 TheSun 2020-01-04T10:32:28.000Z The Sun 5
## 4306 DailyMirror 2020-01-04T10:31:00.000Z The Mirror 4
## 4307 DailyMirror 2020-01-04T10:31:00.000Z The Mirror 2
## 4308 Telegraph 2020-01-04T10:30:32.000Z The Telegraph 4
## 4309 MetroUK 2020-01-04T10:30:09.000Z Metro 2
## 4310 TheSun 2020-01-04T10:30:00.000Z The Sun 15
## 4311 DailyMirror 2020-01-04T10:29:04.000Z The Mirror 3
## 4312 DailyMirror 2020-01-04T10:29:00.000Z The Mirror 4
## 4313 DailyMirror 2020-01-04T10:27:00.000Z The Mirror 1
## 4314 guardian 2020-01-04T10:24:37.000Z The Guardian 51
## 4315 DailyMirror 2020-01-04T10:23:00.000Z The Mirror 3
## 4316 TheSun 2020-01-04T10:22:37.000Z The Sun 3
## 4317 DailyMirror 2020-01-04T10:21:54.000Z The Mirror 3
## 4318 EveningStandard 2020-01-04T10:20:40.000Z Evening Standard 1
## 4319 DailyMailUK 2020-01-04T10:20:06.000Z Daily Mail U.K. 4
## 4320 DailyMirror 2020-01-04T10:20:00.000Z The Mirror 4
## 4321 TheSun 2020-01-04T10:20:00.000Z The Sun 12
## 4322 thetimes 2020-01-04T10:19:42.000Z The Times 27
## 4323 DailyMirror 2020-01-04T10:17:27.000Z The Mirror 0
## 4324 DailyMirror 2020-01-04T10:15:00.000Z The Mirror 4
## 4325 guardian 2020-01-04T10:14:44.000Z The Guardian 22
## 4326 DailyMirror 2020-01-04T10:13:00.000Z The Mirror 3
## 4327 TheSun 2020-01-04T10:12:48.000Z The Sun 3
## 4328 TheSun 2020-01-04T10:10:00.000Z The Sun 61
## 4329 DailyMirror 2020-01-04T10:10:00.000Z The Mirror 4
## 4330 DailyMirror 2020-01-04T10:06:21.000Z The Mirror 3
## 4331 DailyMirror 2020-01-04T10:06:16.000Z The Mirror 4
## 4332 DailyMirror 2020-01-04T10:05:48.000Z The Mirror 2
## 4333 thetimes 2020-01-04T10:05:00.000Z The Times 13
## 4334 guardian 2020-01-04T10:04:52.000Z The Guardian 137
## 4335 TheSun 2020-01-04T10:02:57.000Z The Sun 3
## 4336 DailyMailUK 2020-01-04T10:02:56.000Z Daily Mail U.K. 13
## 4337 guardian 2020-01-04T10:02:26.000Z The Guardian 18
## 4338 Telegraph 2020-01-04T10:01:12.000Z The Telegraph 3
## 4339 MetroUK 2020-01-04T10:00:13.000Z Metro 3
## 4340 EveningStandard 2020-01-04T10:00:01.000Z Evening Standard 3
## 4341 TheSun 2020-01-04T10:00:00.000Z The Sun 33
## 4342 DailyMirror 2020-01-04T10:00:00.000Z The Mirror 1
## 4343 MetroUK 2020-01-04T09:53:11.000Z Metro 2
## 4344 DailyMirror 2020-01-04T09:52:59.000Z The Mirror 10
## 4345 DailyMailUK 2020-01-04T09:52:56.000Z Daily Mail U.K. 1
## 4346 TheSun 2020-01-04T09:52:08.000Z The Sun 5
## 4347 guardian 2020-01-04T09:51:13.000Z The Guardian 35
## 4348 guardian 2020-01-04T09:51:07.000Z The Guardian 202
## 4349 DailyMirror 2020-01-04T09:50:13.000Z The Mirror 3
## 4350 TheSun 2020-01-04T09:50:00.000Z The Sun 14
## 4351 DailyMirror 2020-01-04T09:48:15.000Z The Mirror 5
## 4352 DailyMirror 2020-01-04T09:47:06.000Z The Mirror 49
## 4353 thetimes 2020-01-04T09:46:05.000Z The Times 2
## 4354 Telegraph 2020-01-04T09:45:21.000Z The Telegraph 8
## 4355 thetimes 2020-01-04T09:45:21.000Z The Times 8
## 4356 EveningStandard 2020-01-04T09:40:40.000Z Evening Standard 3
## 4357 TheSun 2020-01-04T09:40:00.000Z The Sun 22
## 4358 DailyMirror 2020-01-04T09:39:49.000Z The Mirror 5
## 4359 guardian 2020-01-04T09:38:58.000Z The Guardian 18
## 4360 guardian 2020-01-05T11:52:08.000Z The Guardian 5
## 4361 DailyMirror 2020-01-05T11:50:55.000Z The Mirror 2
## 4362 TheSun 2020-01-05T11:50:00.000Z The Sun 14
## 4363 EveningStandard 2020-01-05T11:48:12.000Z Evening Standard 1
## 4364 DailyMirror 2020-01-05T11:48:00.000Z The Mirror 0
## 4365 DailyMirror 2020-01-05T11:44:16.000Z The Mirror 5
## 4366 EveningStandard 2020-01-05T11:44:05.000Z Evening Standard 1
## 4367 DailyMirror 2020-01-05T11:42:23.000Z The Mirror 0
## 4368 TheSun 2020-01-05T11:42:07.000Z The Sun 1
## 4369 DailyMirror 2020-01-05T11:42:00.000Z The Mirror 0
## 4370 DailyMirror 2020-01-05T11:41:00.000Z The Mirror 2
## 4371 guardian 2020-01-05T11:40:28.000Z The Guardian 22
## 4372 EveningStandard 2020-01-05T11:40:07.000Z Evening Standard 0
## 4373 TheSun 2020-01-05T11:40:00.000Z The Sun 11
## 4374 DailyMailUK 2020-01-05T11:39:53.000Z Daily Mail U.K. 34
## 4375 DailyMailUK 2020-01-05T11:39:12.000Z Daily Mail U.K. 9
## 4376 EveningStandard 2020-01-05T11:35:11.000Z Evening Standard 3
## 4377 DailyMirror 2020-01-05T11:35:00.000Z The Mirror 2
## 4378 guardian 2020-01-05T11:33:17.000Z The Guardian 19
## 4379 DailyMirror 2020-01-05T11:33:13.000Z The Mirror 2
## 4380 TheSun 2020-01-05T11:32:28.000Z The Sun 3
## 4381 MetroUK 2020-01-05T11:31:05.000Z Metro 8
## 4382 TheSun 2020-01-05T11:30:00.000Z The Sun 9
## 4383 EveningStandard 2020-01-05T11:28:19.000Z Evening Standard 0
## 4384 Telegraph 2020-01-05T11:26:10.000Z The Telegraph 3
## 4385 guardian 2020-01-05T11:23:04.000Z The Guardian 32
## 4386 DailyMirror 2020-01-05T11:22:53.000Z The Mirror 2
## 4387 TheSun 2020-01-05T11:22:20.000Z The Sun 5
## 4388 EveningStandard 2020-01-05T11:21:56.000Z Evening Standard 1
## 4389 DailyMirror 2020-01-05T11:21:00.000Z The Mirror 2
## 4390 DailyMirror 2020-01-05T11:20:00.000Z The Mirror 1
## 4391 TheSun 2020-01-05T11:20:00.000Z The Sun 59
## 4392 EveningStandard 2020-01-05T11:19:10.000Z Evening Standard 0
## 4393 TheSun 2020-01-05T11:17:13.000Z The Sun 2
## 4394 EveningStandard 2020-01-05T11:14:55.000Z Evening Standard 0
## 4395 DailyMailUK 2020-01-05T11:13:14.000Z Daily Mail U.K. 12
## 4396 DailyMirror 2020-01-05T11:13:00.000Z The Mirror 0
## 4397 TheSun 2020-01-05T11:12:47.000Z The Sun 2
## 4398 guardian 2020-01-05T11:12:46.000Z The Guardian 594
## 4399 DailyMirror 2020-01-05T11:12:33.000Z The Mirror 2
## 4400 DailyMirror 2020-01-05T11:11:46.000Z The Mirror 0
## 4401 TheSun 2020-01-05T11:10:00.000Z The Sun 18
## 4402 DailyMirror 2020-01-05T11:09:13.000Z The Mirror 4
## 4403 TheSun 2020-01-05T11:07:54.000Z The Sun 2
## 4404 EveningStandard 2020-01-05T11:05:56.000Z Evening Standard 0
## 4405 DailyMirror 2020-01-05T11:05:06.000Z The Mirror 9
## 4406 Telegraph 2020-01-05T11:03:00.000Z The Telegraph 4
## 4407 TheSun 2020-01-05T11:02:57.000Z The Sun 2
## 4408 guardian 2020-01-05T11:01:59.000Z The Guardian 152
## 4409 EveningStandard 2020-01-05T11:01:59.000Z Evening Standard 0
## 4410 MetroUK 2020-01-05T11:00:13.000Z Metro 11
## 4411 DailyMailUK 2020-01-05T11:00:13.000Z Daily Mail U.K. 17
## 4412 TheSun 2020-01-05T11:00:00.000Z The Sun 20
## 4413 DailyMirror 2020-01-05T10:58:00.000Z The Mirror 1
## 4414 EveningStandard 2020-01-05T10:55:03.000Z Evening Standard 1
## 4415 DailyMirror 2020-01-05T10:52:21.000Z The Mirror 0
## 4416 TheSun 2020-01-05T10:52:07.000Z The Sun 3
## 4417 guardian 2020-01-05T10:52:07.000Z The Guardian 7
## 4418 DailyMirror 2020-01-05T10:50:40.000Z The Mirror 3
## 4419 TheSun 2020-01-05T10:50:00.000Z The Sun 29
## 4420 EveningStandard 2020-01-05T10:49:09.000Z Evening Standard 1
## 4421 DailyMirror 2020-01-05T10:47:32.000Z The Mirror 5
## 4422 guardian 2020-01-05T10:46:50.000Z The Guardian 21
## 4423 DailyMirror 2020-01-05T10:44:55.000Z The Mirror 13
## 4424 DailyMirror 2020-01-05T10:42:40.000Z The Mirror 5
## 4425 TheSun 2020-01-05T10:42:17.000Z The Sun 82
## 4426 DailyMirror 2020-01-05T10:42:15.000Z The Mirror 5
## 4427 Telegraph 2020-01-05T10:40:21.000Z The Telegraph 77
## 4428 guardian 2020-01-05T10:40:19.000Z The Guardian 3
## 4429 EveningStandard 2020-01-05T10:40:19.000Z Evening Standard 4
## 4430 TheSun 2020-01-05T10:40:00.000Z The Sun 8
## 4431 DailyMirror 2020-01-05T10:39:37.000Z The Mirror 7
## 4432 DailyMailUK 2020-01-05T10:39:19.000Z Daily Mail U.K. 7
## 4433 DailyMirror 2020-01-05T10:36:00.000Z The Mirror 0
## 4434 EveningStandard 2020-01-05T10:35:09.000Z Evening Standard 0
## 4435 DailyMirror 2020-01-05T10:35:00.000Z The Mirror 0
## 4436 TheSun 2020-01-05T10:34:40.000Z The Sun 20
## 4437 TheSun 2020-01-05T10:33:12.000Z The Sun 5
## 4438 DailyMirror 2020-01-05T10:31:49.000Z The Mirror 0
## 4439 DailyMirror 2020-01-05T10:31:33.000Z The Mirror 1
## 4440 DailyMailUK 2020-01-05T10:31:03.000Z Daily Mail U.K. 8
## 4441 EveningStandard 2020-01-05T10:30:55.000Z Evening Standard 4
## 4442 MetroUK 2020-01-05T10:30:06.000Z Metro 0
## 4443 TheSun 2020-01-05T10:30:00.000Z The Sun 5
## 4444 guardian 2020-01-05T10:28:36.000Z The Guardian 6
## 4445 EveningStandard 2020-01-05T10:25:38.000Z Evening Standard 11
## 4446 TheSun 2020-01-05T10:22:38.000Z The Sun 5
## 4447 EveningStandard 2020-01-05T10:21:43.000Z Evening Standard 0
## 4448 TheSun 2020-01-05T10:20:00.000Z The Sun 8
## 4449 DailyMirror 2020-01-05T10:18:11.000Z The Mirror 2
## 4450 DailyMirror 2020-01-05T10:17:00.000Z The Mirror 0
## 4451 guardian 2020-01-05T10:15:46.000Z The Guardian 41
## 4452 EveningStandard 2020-01-05T10:13:48.000Z Evening Standard 4
## 4453 TheSun 2020-01-05T10:12:51.000Z The Sun 4
## 4454 DailyMirror 2020-01-05T10:11:00.000Z The Mirror 1
## 4455 DailyMirror 2020-01-05T10:11:00.000Z The Mirror 0
## 4456 TheSun 2020-01-05T10:10:00.000Z The Sun 13
## 4457 DailyMirror 2020-01-05T10:05:00.000Z The Mirror 27
## 4458 EveningStandard 2020-01-05T10:04:58.000Z Evening Standard 12
## 4459 TheSun 2020-01-05T10:03:00.000Z The Sun 2
## 4460 guardian 2020-01-05T10:02:46.000Z The Guardian 151
## 4461 DailyMirror 2020-01-05T10:01:15.000Z The Mirror 4
## 4462 DailyMailUK 2020-01-05T10:01:07.000Z Daily Mail U.K. 7
## 4463 DailyMirror 2020-01-05T10:00:21.000Z The Mirror 7
## 4464 MetroUK 2020-01-05T10:00:13.000Z Metro 0
## 4465 DailyMailUK 2020-01-05T10:00:12.000Z Daily Mail U.K. 5
## 4466 TheSun 2020-01-05T10:00:00.000Z The Sun 18
## 4467 guardian 2020-01-05T10:00:00.000Z The Guardian 24
## 4468 EveningStandard 2020-01-05T09:58:17.000Z Evening Standard 3
## 4469 DailyMirror 2020-01-05T09:55:49.000Z The Mirror 2
## 4470 DailyMirror 2020-01-05T09:54:11.000Z The Mirror 4
## 4471 EveningStandard 2020-01-05T09:53:24.000Z Evening Standard 2
## 4472 DailyMirror 2020-01-05T09:53:14.000Z The Mirror 1
## 4473 guardian 2020-01-05T09:52:28.000Z The Guardian 9
## 4474 TheSun 2020-01-05T09:52:24.000Z The Sun 0
## 4475 DailyMirror 2020-01-05T09:51:00.000Z The Mirror 1
## 4476 TheSun 2020-01-05T09:50:00.000Z The Sun 28
## 4477 EveningStandard 2020-01-05T09:49:28.000Z Evening Standard 0
## 4478 DailyMirror 2020-01-05T09:48:00.000Z The Mirror 3
## 4479 EveningStandard 2020-01-05T09:43:47.000Z Evening Standard 0
## 4480 DailyMirror 2020-01-05T09:42:57.000Z The Mirror 6
## 4481 TheSun 2020-01-05T09:42:50.000Z The Sun 4
## 4482 DailyMirror 2020-01-05T09:41:00.000Z The Mirror 0
## 4483 TheSun 2020-01-05T09:40:00.000Z The Sun 4
## 4484 guardian 2020-01-05T09:39:02.000Z The Guardian 22
## 4485 DailyMirror 2020-01-05T09:37:05.000Z The Mirror 2
## 4486 EveningStandard 2020-01-05T09:36:05.000Z Evening Standard 1
## 4487 DailyMirror 2020-01-05T09:35:36.000Z The Mirror 3
## 4488 TheSun 2020-01-05T09:33:37.000Z The Sun 4
## 4489 TheSun 2020-01-05T09:32:57.000Z The Sun 0
## 4490 DailyMirror 2020-01-05T09:31:06.000Z The Mirror 2
## 4491 MetroUK 2020-01-05T09:31:02.000Z Metro 6
## 4492 DailyMailUK 2020-01-05T09:30:07.000Z Daily Mail U.K. 3
## 4493 EveningStandard 2020-01-05T09:30:01.000Z Evening Standard 1
## 4494 TheSun 2020-01-05T09:30:00.000Z The Sun 27
## 4495 guardian 2020-01-05T09:29:01.000Z The Guardian 28
## 4496 DailyMirror 2020-01-05T09:29:00.000Z The Mirror 5
## 4497 EveningStandard 2020-01-05T09:25:04.000Z Evening Standard 2
## 4498 TheSun 2020-01-05T09:22:08.000Z The Sun 1
## 4499 EveningStandard 2020-01-05T09:21:32.000Z Evening Standard 1
## 4500 DailyMirror 2020-01-05T09:21:00.000Z The Mirror 0
## 4501 TheSun 2020-01-05T09:20:00.000Z The Sun 11
## 4502 guardian 2020-01-05T09:15:36.000Z The Guardian 12
## 4503 guardian 2020-01-05T09:15:34.000Z The Guardian 111
## 4504 guardian 2020-01-05T09:15:30.000Z The Guardian 6
## 4505 EveningStandard 2020-01-05T09:15:28.000Z Evening Standard 2
## 4506 TheSun 2020-01-05T09:12:32.000Z The Sun 2
## 4507 DailyMirror 2020-01-05T09:12:08.000Z The Mirror 15
## 4508 TheSun 2020-01-05T09:10:00.000Z The Sun 14
## 4509 EveningStandard 2020-01-05T09:08:25.000Z Evening Standard 2
## 4510 DailyMailUK 2020-01-05T09:07:55.000Z Daily Mail U.K. 5
## 4511 EveningStandard 2020-01-05T09:05:52.000Z Evening Standard 7
## 4512 guardian 2020-01-05T09:03:54.000Z The Guardian 47
## 4513 DailyMirror 2020-01-05T09:03:09.000Z The Mirror 6
## 4514 TheSun 2020-01-05T09:02:54.000Z The Sun 2
## 4515 MetroUK 2020-01-05T09:00:11.000Z Metro 2
## 4516 DailyMailUK 2020-01-05T09:00:10.000Z Daily Mail U.K. 0
## 4517 DailyMirror 2020-01-05T09:00:00.000Z The Mirror 2
## 4518 TheSun 2020-01-05T09:00:00.000Z The Sun 21
## 4519 EveningStandard 2020-01-05T08:59:58.000Z Evening Standard 1
## 4520 DailyMirror 2020-01-05T08:58:00.000Z The Mirror 0
## 4521 DailyMirror 2020-01-05T08:54:04.000Z The Mirror 12
## 4522 DailyMirror 2020-01-05T08:54:00.000Z The Mirror 3
## 4523 DailyMirror 2020-01-05T08:53:29.000Z The Mirror 5
## 4524 EveningStandard 2020-01-05T08:53:15.000Z Evening Standard 17
## 4525 TheSun 2020-01-05T08:53:00.000Z The Sun 8
## 4526 guardian 2020-01-05T08:52:59.000Z The Guardian 30
## 4527 EveningStandard 2020-01-05T08:52:00.000Z Evening Standard 2
## 4528 DailyMirror 2020-01-05T08:50:58.000Z The Mirror 3
## 4529 DailyMirror 2020-01-05T08:48:00.000Z The Mirror 4
## 4530 DailyMirror 2020-01-05T08:44:22.000Z The Mirror 1
## 4531 DailyMailUK 2020-01-05T08:43:34.000Z Daily Mail U.K. 11
## 4532 TheSun 2020-01-05T08:43:10.000Z The Sun 3
## 4533 DailyMirror 2020-01-05T08:43:00.000Z The Mirror 2
## 4534 EveningStandard 2020-01-05T08:42:01.000Z Evening Standard 1
## 4535 DailyMirror 2020-01-05T08:40:30.000Z The Mirror 20
## 4536 TheSun 2020-01-05T08:40:00.000Z The Sun 24
## 4537 TheSun 2020-01-05T08:37:08.000Z The Sun 5
## 4538 DailyMirror 2020-01-05T08:36:15.000Z The Mirror 3
## 4539 DailyMailUK 2020-01-05T08:34:41.000Z Daily Mail U.K. 10
## 4540 DailyMirror 2020-01-05T08:32:42.000Z The Mirror 3
## 4541 TheSun 2020-01-05T08:32:11.000Z The Sun 4
## 4542 guardian 2020-01-05T08:31:37.000Z The Guardian 53
## 4543 guardian 2020-01-05T08:31:37.000Z The Guardian 4
## 4544 guardian 2020-01-05T08:31:36.000Z The Guardian 4
## 4545 DailyMirror 2020-01-05T08:30:20.000Z The Mirror 3
## 4546 DailyMailUK 2020-01-05T08:30:09.000Z Daily Mail U.K. 1
## 4547 MetroUK 2020-01-05T08:30:07.000Z Metro 0
## 4548 TheSun 2020-01-05T08:30:00.000Z The Sun 7
## 4549 DailyMirror 2020-01-05T08:24:52.000Z The Mirror 8
## 4550 DailyMirror 2020-01-05T08:23:16.000Z The Mirror 6
## 4551 TheSun 2020-01-05T08:22:10.000Z The Sun 3
## 4552 DailyMirror 2020-01-05T08:20:46.000Z The Mirror 3
## 4553 DailyMirror 2020-01-05T08:17:20.000Z The Mirror 2
## 4554 DailyMirror 2020-01-05T08:15:52.000Z The Mirror 4
## 4555 TheSun 2020-01-05T08:13:50.000Z The Sun 1
## 4556 DailyMirror 2020-01-05T08:13:00.000Z The Mirror 2
## 4557 DailyMirror 2020-01-05T08:12:43.000Z The Mirror 2
## 4558 TheSun 2020-01-05T08:12:32.000Z The Sun 4
## 4559 DailyMirror 2020-01-05T08:10:53.000Z The Mirror 22
## 4560 DailyMirror 2020-01-05T08:10:06.000Z The Mirror 1
## 4561 TheSun 2020-01-05T08:10:00.000Z The Sun 26
## 4562 guardian 2020-01-05T08:08:57.000Z The Guardian 7
## 4563 guardian 2020-01-05T08:08:56.000Z The Guardian 2
## 4564 DailyMirror 2020-01-05T08:06:57.000Z The Mirror 2
## 4565 DailyMailUK 2020-01-05T08:04:33.000Z Daily Mail U.K. 9
## 4566 TheSun 2020-01-05T08:02:42.000Z The Sun 2
## 4567 DailyMirror 2020-01-05T08:00:58.000Z The Mirror 0
## 4568 EveningStandard 2020-01-05T08:00:49.000Z Evening Standard 0
## 4569 Telegraph 2020-01-05T08:00:45.000Z The Telegraph 26
## 4570 MetroUK 2020-01-05T08:00:05.000Z Metro 3
## 4571 TheSun 2020-01-05T08:00:00.000Z The Sun 26
## 4572 DailyMirror 2020-01-05T07:58:00.000Z The Mirror 0
## 4573 DailyMirror 2020-01-05T07:56:43.000Z The Mirror 3
## 4574 guardian 2020-01-05T07:55:48.000Z The Guardian 11
## 4575 TheSun 2020-01-05T07:52:51.000Z The Sun 4
## 4576 DailyMirror 2020-01-05T07:51:19.000Z The Mirror 32
## 4577 TheSun 2020-01-05T07:50:00.000Z The Sun 12
## 4578 DailyMailUK 2020-01-05T07:49:42.000Z Daily Mail U.K. 60
## 4579 guardian 2020-01-05T07:45:49.000Z The Guardian 41
## 4580 TheSun 2020-01-05T07:42:59.000Z The Sun 1
## 4581 EveningStandard 2020-01-05T07:41:01.000Z Evening Standard 2
## 4582 TheSun 2020-01-05T07:40:00.000Z The Sun 8
## 4583 DailyMirror 2020-01-05T07:39:41.000Z The Mirror 2
## 4584 TheSun 2020-01-05T07:32:10.000Z The Sun 8
## 4585 DailyMirror 2020-01-05T07:32:04.000Z The Mirror 13
## 4586 Telegraph 2020-01-05T07:30:13.000Z The Telegraph 8
## 4587 MetroUK 2020-01-05T07:30:07.000Z Metro 11
## 4588 TheSun 2020-01-05T07:30:00.000Z The Sun 7
## 4589 DailyMirror 2020-01-05T07:24:23.000Z The Mirror 3
## 4590 guardian 2020-01-05T07:22:49.000Z The Guardian 15
## 4591 guardian 2020-01-05T07:22:48.000Z The Guardian 3
## 4592 TheSun 2020-01-05T07:22:21.000Z The Sun 9
## 4593 TheSun 2020-01-05T07:20:00.000Z The Sun 120
## 4594 DailyMirror 2020-01-05T07:15:31.000Z The Mirror 8
## 4595 DailyMirror 2020-01-05T07:15:00.000Z The Mirror 5
## 4596 TheSun 2020-01-05T07:12:45.000Z The Sun 2
## 4597 TheSun 2020-01-05T07:10:00.000Z The Sun 42
## 4598 guardian 2020-01-05T07:09:47.000Z The Guardian 4
## 4599 TheSun 2020-01-05T07:02:21.000Z The Sun 13
## 4600 TheSun 2020-01-05T07:02:07.000Z The Sun 1
## 4601 Telegraph 2020-01-05T07:01:07.000Z The Telegraph 10
## 4602 MetroUK 2020-01-05T07:00:08.000Z Metro 1
## 4603 TheSun 2020-01-05T07:00:00.000Z The Sun 5
## 4604 guardian 2020-01-05T06:58:24.000Z The Guardian 36
## 4605 guardian 2020-01-05T06:45:22.000Z The Guardian 16
## 4606 TheSun 2020-01-05T06:40:00.000Z The Sun 15
## 4607 guardian 2020-01-05T06:33:20.000Z The Guardian 3
## 4608 MetroUK 2020-01-05T06:30:03.000Z Metro 1
## 4609 DailyMirror 2020-01-05T06:22:00.000Z The Mirror 1
## 4610 DailyMirror 2020-01-05T06:21:00.000Z The Mirror 5
## 4611 TheSun 2020-01-05T06:00:00.000Z The Sun 11
## 4612 guardian 2020-01-05T05:52:15.000Z The Guardian 64
## 4613 guardian 2020-01-05T05:42:22.000Z The Guardian 25
## 4614 thetimes 2020-01-05T05:35:31.000Z The Times 2
## 4615 guardian 2020-01-05T05:33:32.000Z The Guardian 12
## 4616 guardian 2020-01-05T05:25:41.000Z The Guardian 9
## 4617 DailyMirror 2020-01-05T05:23:54.000Z The Mirror 2
## 4618 TheSun 2020-01-05T05:20:00.000Z The Sun 20
## 4619 guardian 2020-01-05T05:18:09.000Z The Guardian 15
## 4620 DailyMirror 2020-01-05T05:16:56.000Z The Mirror 9
## 4621 DailyMirror 2020-01-05T05:08:00.000Z The Mirror 6
## 4622 DailyMirror 2020-01-05T05:07:53.000Z The Mirror 2
## 4623 guardian 2020-01-05T05:05:22.000Z The Guardian 19
## 4624 TheSun 2020-01-05T05:00:00.000Z The Sun 10
## 4625 TheSun 2020-01-05T04:40:00.000Z The Sun 49
## 4626 DailyMirror 2020-01-05T04:26:30.000Z The Mirror 9
## 4627 TheSun 2020-01-05T04:20:00.000Z The Sun 108
## 4628 guardian 2020-01-05T04:13:15.000Z The Guardian 15
## 4629 TheSun 2020-01-05T04:00:00.000Z The Sun 4
## 4630 TheSun 2020-01-05T03:51:16.000Z The Sun 7
## 4631 DailyMirror 2020-01-05T03:47:59.000Z The Mirror 1
## 4632 DailyMirror 2020-01-05T03:46:00.000Z The Mirror 2
## 4633 TheSun 2020-01-05T03:40:00.000Z The Sun 74
## 4634 guardian 2020-01-05T03:24:25.000Z The Guardian 86
## 4635 TheSun 2020-01-05T03:00:00.000Z The Sun 3
## 4636 DailyMirror 2020-01-05T02:56:19.000Z The Mirror 6
## 4637 TheSun 2020-01-05T02:40:00.000Z The Sun 54
## 4638 guardian 2020-01-05T02:38:04.000Z The Guardian 22
## 4639 DailyMirror 2020-01-05T02:20:47.000Z The Mirror 259
## 4640 TheSun 2020-01-05T02:20:00.000Z The Sun 11
## 4641 guardian 2020-01-05T02:17:56.000Z The Guardian 12
## 4642 DailyMirror 2020-01-05T02:16:00.000Z The Mirror 2
## 4643 DailyMirror 2020-01-05T02:15:50.000Z The Mirror 14
## 4644 EveningStandard 2020-01-05T02:00:58.000Z Evening Standard 2
## 4645 TheSun 2020-01-05T02:00:00.000Z The Sun 9
## 4646 TheSun 2020-01-05T01:40:00.000Z The Sun 3
## 4647 DailyMirror 2020-01-05T01:26:56.000Z The Mirror 51
## 4648 TheSun 2020-01-05T01:20:00.000Z The Sun 27
## 4649 DailyMirror 2020-01-05T01:03:18.000Z The Mirror 21
## 4650 thetimes 2020-01-05T00:53:31.000Z The Times 3
## 4651 TheSun 2020-01-05T00:40:00.000Z The Sun 11
## 4652 TheSun 2020-01-05T00:20:00.000Z The Sun 6
## 4653 guardian 2020-01-05T00:18:34.000Z The Guardian 3
## 4654 guardian 2020-01-05T00:18:33.000Z The Guardian 102
## 4655 DailyMirror 2020-01-05T00:01:36.000Z The Mirror 7
## 4656 EveningStandard 2020-01-05T00:00:37.000Z Evening Standard 1
## 4657 TheSun 2020-01-05T00:00:00.000Z The Sun 21
## 4658 DailyMirror 2020-01-05T00:00:00.000Z The Mirror 3
## 4659 guardian 2020-01-04T23:56:02.000Z The Guardian 3
## 4660 TheSun 2020-01-04T23:50:00.000Z The Sun 16
## 4661 DailyMirror 2020-01-04T23:43:49.000Z The Mirror 2
## 4662 DailyMirror 2020-01-04T23:42:00.000Z The Mirror 6
## 4663 EveningStandard 2020-01-04T23:40:57.000Z Evening Standard 0
## 4664 TheSun 2020-01-04T23:40:00.000Z The Sun 8
## 4665 DailyMirror 2020-01-04T23:37:08.000Z The Mirror 5
## 4666 DailyMirror 2020-01-04T23:34:00.000Z The Mirror 7
## 4667 TheSun 2020-01-04T23:30:00.000Z The Sun 27
## 4668 TheSun 2020-01-04T23:20:00.000Z The Sun 6
## 4669 guardian 2020-01-04T23:16:40.000Z The Guardian 12
## 4670 TheSun 2020-01-04T23:10:00.000Z The Sun 10
## 4671 DailyMirror 2020-01-04T23:09:00.000Z The Mirror 7
## 4672 guardian 2020-01-04T23:06:50.000Z The Guardian 3
## 4673 guardian 2020-01-04T23:06:49.000Z The Guardian 2
## 4674 DailyMirror 2020-01-04T23:03:13.000Z The Mirror 18
## 4675 DailyMirror 2020-01-04T23:03:00.000Z The Mirror 2
## 4676 TheSun 2020-01-04T23:02:55.000Z The Sun 2
## 4677 DailyMirror 2020-01-04T23:02:11.000Z The Mirror 5
## 4678 DailyMirror 2020-01-04T23:01:29.000Z The Mirror 6
## 4679 EveningStandard 2020-01-04T23:00:42.000Z Evening Standard 1
## 4680 DailyMirror 2020-01-04T23:00:00.000Z The Mirror 1
## 4681 DailyMirror 2020-01-04T23:00:00.000Z The Mirror 2
## 4682 DailyMirror 2020-01-04T22:56:00.000Z The Mirror 0
## 4683 guardian 2020-01-04T22:52:47.000Z The Guardian 28
## 4684 TheSun 2020-01-04T22:52:47.000Z The Sun 0
## 4685 TheSun 2020-01-04T22:51:26.000Z The Sun 10
## 4686 TheSun 2020-01-04T22:50:00.000Z The Sun 13
## 4687 DailyMirror 2020-01-04T22:46:00.000Z The Mirror 1
## 4688 TheSun 2020-01-04T22:42:59.000Z The Sun 3
## 4689 DailyMirror 2020-01-04T22:42:11.000Z The Mirror 2
## 4690 DailyMirror 2020-01-04T22:42:00.000Z The Mirror 1
## 4691 guardian 2020-01-04T22:41:52.000Z The Guardian 19
## 4692 guardian 2020-01-04T22:41:51.000Z The Guardian 82
## 4693 DailyMirror 2020-01-04T22:41:00.000Z The Mirror 3
## 4694 EveningStandard 2020-01-04T22:40:26.000Z Evening Standard 1
## 4695 DailyMailUK 2020-01-04T22:40:03.000Z Daily Mail U.K. 1
## 4696 TheSun 2020-01-04T22:40:00.000Z The Sun 18
## 4697 DailyMirror 2020-01-04T22:34:00.000Z The Mirror 2
## 4698 TheSun 2020-01-04T22:32:28.000Z The Sun 4
## 4699 guardian 2020-01-04T22:30:31.000Z The Guardian 20
## 4700 TheSun 2020-01-04T22:30:00.000Z The Sun 20
## 4701 TheSun 2020-01-04T22:22:39.000Z The Sun 6
## 4702 Telegraph 2020-01-04T22:20:43.000Z The Telegraph 9
## 4703 EveningStandard 2020-01-04T22:20:40.000Z Evening Standard 0
## 4704 DailyMirror 2020-01-04T22:20:18.000Z The Mirror 11
## 4705 DailyMailUK 2020-01-04T22:20:07.000Z Daily Mail U.K. 4
## 4706 TheSun 2020-01-04T22:20:00.000Z The Sun 17
## 4707 guardian 2020-01-04T22:18:59.000Z The Guardian 4
## 4708 DailyMirror 2020-01-04T22:13:00.000Z The Mirror 0
## 4709 TheSun 2020-01-04T22:12:47.000Z The Sun 0
## 4710 TheSun 2020-01-04T22:10:00.000Z The Sun 13
## 4711 DailyMirror 2020-01-04T22:09:58.000Z The Mirror 7
## 4712 Telegraph 2020-01-04T22:05:59.000Z The Telegraph 10
## 4713 guardian 2020-01-04T22:05:56.000Z The Guardian 4
## 4714 DailyMirror 2020-01-04T22:05:38.000Z The Mirror 12
## 4715 DailyMirror 2020-01-04T22:03:28.000Z The Mirror 3
## 4716 DailyMirror 2020-01-04T22:03:00.000Z The Mirror 1
## 4717 TheSun 2020-01-04T22:02:58.000Z The Sun 4
## 4718 DailyMirror 2020-01-04T22:01:09.000Z The Mirror 3
## 4719 EveningStandard 2020-01-04T22:01:00.000Z Evening Standard 0
## 4720 Telegraph 2020-01-04T22:00:43.000Z The Telegraph 6
## 4721 Telegraph 2020-01-04T22:00:40.000Z The Telegraph 15
## 4722 Telegraph 2020-01-04T22:00:36.000Z The Telegraph 26
## 4723 Telegraph 2020-01-04T22:00:31.000Z The Telegraph 516
## 4724 Telegraph 2020-01-04T22:00:28.000Z The Telegraph 19
## 4725 MetroUK 2020-01-04T22:00:08.000Z Metro 1
## 4726 DailyMailUK 2020-01-04T22:00:03.000Z Daily Mail U.K. 6
## 4727 TheSun 2020-01-04T22:00:00.000Z The Sun 27
## 4728 DailyMirror 2020-01-04T22:00:00.000Z The Mirror 2
## 4729 DailyMirror 2020-01-04T21:58:00.000Z The Mirror 2
## 4730 guardian 2020-01-04T21:55:23.000Z The Guardian 5
## 4731 EveningStandard 2020-01-04T21:54:59.000Z Evening Standard 3
## 4732 DailyMirror 2020-01-04T21:54:52.000Z The Mirror 16
## 4733 TheSun 2020-01-04T21:52:09.000Z The Sun 5
## 4734 DailyMirror 2020-01-04T21:52:00.000Z The Mirror 10
## 4735 TheSun 2020-01-04T21:50:00.000Z The Sun 4
## 4736 DailyMirror 2020-01-04T21:48:00.000Z The Mirror 0
## 4737 DailyMirror 2020-01-04T21:46:00.000Z The Mirror 5
## 4738 EveningStandard 2020-01-04T21:45:15.000Z Evening Standard 0
## 4739 guardian 2020-01-04T21:43:18.000Z The Guardian 168
## 4740 TheSun 2020-01-04T21:42:19.000Z The Sun 19
## 4741 DailyMirror 2020-01-04T21:41:00.000Z The Mirror 3
## 4742 DailyMailUK 2020-01-04T21:40:03.000Z Daily Mail U.K. 8
## 4743 TheSun 2020-01-04T21:40:00.000Z The Sun 8
## 4744 DailyMirror 2020-01-04T21:34:00.000Z The Mirror 6
## 4745 TheSun 2020-01-04T21:32:28.000Z The Sun 52
## 4746 DailyMirror 2020-01-04T21:32:11.000Z The Mirror 11
## 4747 guardian 2020-01-04T21:31:54.000Z The Guardian 32
## 4748 guardian 2020-01-04T21:31:53.000Z The Guardian 6
## 4749 guardian 2020-01-04T21:31:51.000Z The Guardian 9
## 4750 TheSun 2020-01-04T21:30:00.000Z The Sun 52
## 4751 DailyMirror 2020-01-04T21:28:00.000Z The Mirror 4
## 4752 DailyMirror 2020-01-04T21:27:35.000Z The Mirror 3
## 4753 TheSun 2020-01-04T21:22:39.000Z The Sun 0
## 4754 EveningStandard 2020-01-04T21:20:41.000Z Evening Standard 3
## 4755 DailyMailUK 2020-01-04T21:20:06.000Z Daily Mail U.K. 2
## 4756 TheSun 2020-01-04T21:20:00.000Z The Sun 2
## 4757 Telegraph 2020-01-04T21:18:46.000Z The Telegraph 39
## 4758 DailyMirror 2020-01-04T21:16:00.000Z The Mirror 0
## 4759 TheSun 2020-01-04T21:12:50.000Z The Sun 0
## 4760 TheSun 2020-01-04T21:10:52.000Z The Sun 0
## 4761 DailyMirror 2020-01-04T21:10:38.000Z The Mirror 4
## 4762 TheSun 2020-01-04T21:10:00.000Z The Sun 28
## 4763 guardian 2020-01-04T21:08:53.000Z The Guardian 5
## 4764 DailyMailUK 2020-01-04T21:08:16.000Z Daily Mail U.K. 44
## 4765 DailyMirror 2020-01-04T21:03:00.000Z The Mirror 1
## 4766 TheSun 2020-01-04T21:02:59.000Z The Sun 5
## 4767 DailyMirror 2020-01-04T21:02:55.000Z The Mirror 20
## 4768 DailyMirror 2020-01-04T21:01:50.000Z The Mirror 11
## 4769 EveningStandard 2020-01-04T21:00:49.000Z Evening Standard 1
## 4770 MetroUK 2020-01-04T21:00:15.000Z Metro 0
## 4771 DailyMailUK 2020-01-04T21:00:06.000Z Daily Mail U.K. 3
## 4772 DailyMirror 2020-01-04T20:59:00.000Z The Mirror 0
## 4773 DailyMirror 2020-01-04T20:57:00.000Z The Mirror 0
## 4774 DailyMirror 2020-01-04T20:54:11.000Z The Mirror 4
## 4775 TheSun 2020-01-04T20:52:55.000Z The Sun 6
## 4776 Telegraph 2020-01-04T20:50:05.000Z The Telegraph 46
## 4777 DailyMirror 2020-01-04T20:50:00.000Z The Mirror 1
## 4778 TheSun 2020-01-04T20:50:00.000Z The Sun 3
## 4779 guardian 2020-01-04T20:48:59.000Z The Guardian 1
## 4780 DailyMirror 2020-01-04T20:46:00.000Z The Mirror 8
## 4781 TheSun 2020-01-04T20:42:07.000Z The Sun 2
## 4782 guardian 2020-01-04T20:41:03.000Z The Guardian 46
## 4783 EveningStandard 2020-01-04T20:40:07.000Z Evening Standard 0
## 4784 DailyMailUK 2020-01-04T20:40:07.000Z Daily Mail U.K. 3
## 4785 TheSun 2020-01-04T20:40:00.000Z The Sun 11
## 4786 DailyMirror 2020-01-04T20:38:46.000Z The Mirror 3
## 4787 TheSun 2020-01-04T20:37:05.000Z The Sun 0
## 4788 DailyMirror 2020-01-04T20:36:54.000Z The Mirror 0
## 4789 Telegraph 2020-01-04T20:35:52.000Z The Telegraph 3
## 4790 DailyMirror 2020-01-04T20:34:00.000Z The Mirror 2
## 4791 TheSun 2020-01-04T20:32:16.000Z The Sun 0
## 4792 Telegraph 2020-01-04T20:31:39.000Z The Telegraph 13
## 4793 MetroUK 2020-01-04T20:30:08.000Z Metro 11
## 4794 DailyMirror 2020-01-04T20:30:00.000Z The Mirror 14
## 4795 TheSun 2020-01-04T20:30:00.000Z The Sun 132
## 4796 DailyMailUK 2020-01-04T20:28:20.000Z Daily Mail U.K. 76
## 4797 guardian 2020-01-04T20:27:21.000Z The Guardian 220
## 4798 Telegraph 2020-01-04T20:26:18.000Z The Telegraph 18
## 4799 DailyMirror 2020-01-04T20:23:29.000Z The Mirror 3
## 4800 TheSun 2020-01-04T20:22:27.000Z The Sun 2
## 4801 DailyMirror 2020-01-04T20:21:38.000Z The Mirror 1
## 4802 EveningStandard 2020-01-04T20:20:29.000Z Evening Standard 2
## 4803 DailyMailUK 2020-01-04T20:20:07.000Z Daily Mail U.K. 30
## 4804 TheSun 2020-01-04T20:20:00.000Z The Sun 8
## 4805 guardian 2020-01-04T20:18:18.000Z The Guardian 10
## 4806 DailyMirror 2020-01-04T20:16:04.000Z The Mirror 18
## 4807 DailyMirror 2020-01-04T20:14:26.000Z The Mirror 5
## 4808 TheSun 2020-01-04T20:12:15.000Z The Sun 7
## 4809 DailyMirror 2020-01-04T20:11:02.000Z The Mirror 7
## 4810 TheSun 2020-01-04T20:10:00.000Z The Sun 16
## 4811 guardian 2020-01-04T20:04:22.000Z The Guardian 5
## 4812 TheSun 2020-01-04T20:02:22.000Z The Sun 5
## 4813 EveningStandard 2020-01-04T20:00:22.000Z Evening Standard 0
## 4814 MetroUK 2020-01-04T20:00:16.000Z Metro 2
## 4815 DailyMailUK 2020-01-04T20:00:11.000Z Daily Mail U.K. 2
## 4816 TheSun 2020-01-04T20:00:00.000Z The Sun 3
## 4817 DailyMirror 2020-01-04T20:00:00.000Z The Mirror 0
## 4818 DailyMirror 2020-01-04T19:58:00.000Z The Mirror 0
## 4819 DailyMirror 2020-01-04T19:57:00.000Z The Mirror 3
## 4820 Telegraph 2020-01-04T19:56:57.000Z The Telegraph 76
## 4821 guardian 2020-01-04T19:54:48.000Z The Guardian 5
## 4822 guardian 2020-01-04T19:54:47.000Z The Guardian 3
## 4823 guardian 2020-01-04T19:54:47.000Z The Guardian 1
## 4824 DailyMailUK 2020-01-04T19:54:28.000Z Daily Mail U.K. 31
## 4825 TheSun 2020-01-04T19:52:30.000Z The Sun 0
## 4826 TheSun 2020-01-04T19:50:00.000Z The Sun 19
## 4827 DailyMirror 2020-01-04T19:48:20.000Z The Mirror 10
## 4828 guardian 2020-01-04T19:47:35.000Z The Guardian 41
## 4829 DailyMirror 2020-01-04T19:47:00.000Z The Mirror 2
## 4830 DailyMirror 2020-01-04T19:46:00.000Z The Mirror 1
## 4831 DailyMirror 2020-01-04T19:45:08.000Z The Mirror 6
## 4832 TheSun 2020-01-04T19:42:39.000Z The Sun 17
## 4833 DailyMirror 2020-01-04T19:42:35.000Z The Mirror 3
## 4834 EveningStandard 2020-01-04T19:40:43.000Z Evening Standard 0
## 4835 DailyMailUK 2020-01-04T19:40:04.000Z Daily Mail U.K. 1
## 4836 TheSun 2020-01-04T19:40:00.000Z The Sun 16
## 4837 DailyMirror 2020-01-04T19:39:37.000Z The Mirror 4
## 4838 guardian 2020-01-04T19:38:07.000Z The Guardian 56
## 4839 Telegraph 2020-01-04T19:33:24.000Z The Telegraph 6
## 4840 DailyMirror 2020-01-04T19:33:00.000Z The Mirror 2
## 4841 TheSun 2020-01-04T19:32:59.000Z The Sun 2
## 4842 DailyMirror 2020-01-04T19:32:48.000Z The Mirror 8
## 4843 DailyMirror 2020-01-04T19:32:14.000Z The Mirror 7
## 4844 MetroUK 2020-01-04T19:30:12.000Z Metro 3
## 4845 TheSun 2020-01-04T19:30:00.000Z The Sun 22
## 4846 DailyMirror 2020-01-04T19:30:00.000Z The Mirror 5
## 4847 guardian 2020-01-04T19:28:14.000Z The Guardian 31
## 4848 DailyMirror 2020-01-04T19:28:04.000Z The Mirror 5
## 4849 guardian 2020-01-04T19:25:07.000Z The Guardian 9
## 4850 TheSun 2020-01-04T19:22:10.000Z The Sun 1
## 4851 EveningStandard 2020-01-04T19:20:13.000Z Evening Standard 2
## 4852 DailyMailUK 2020-01-04T19:20:04.000Z Daily Mail U.K. 1
## 4853 TheSun 2020-01-04T19:20:00.000Z The Sun 14
## 4854 DailyMirror 2020-01-04T19:18:02.000Z The Mirror 2
## 4855 DailyMirror 2020-01-04T19:16:00.000Z The Mirror 1
## 4856 guardian 2020-01-04T19:15:17.000Z The Guardian 3
## 4857 TheSun 2020-01-04T19:12:20.000Z The Sun 7
## 4858 TheSun 2020-01-04T19:10:00.000Z The Sun 4
## 4859 guardian 2020-01-04T19:05:17.000Z The Guardian 148
## 4860 thetimes 2020-01-05T20:50:42.000Z The Times 10
## 4861 DailyMirror 2020-01-05T20:50:00.000Z The Mirror 7
## 4862 TheSun 2020-01-05T20:50:00.000Z The Sun 15
## 4863 EveningStandard 2020-01-05T20:48:42.000Z Evening Standard 3
## 4864 guardian 2020-01-05T20:48:22.000Z The Guardian 4
## 4865 DailyMirror 2020-01-05T20:45:55.000Z The Mirror 38
## 4866 guardian 2020-01-05T20:44:45.000Z The Guardian 5
## 4867 DailyMirror 2020-01-05T20:43:00.000Z The Mirror 272
## 4868 TheSun 2020-01-05T20:42:46.000Z The Sun 4
## 4869 DailyMirror 2020-01-05T20:42:00.000Z The Mirror 2
## 4870 Telegraph 2020-01-05T20:41:50.000Z The Telegraph 6
## 4871 EveningStandard 2020-01-05T20:41:49.000Z Evening Standard 3
## 4872 DailyMailUK 2020-01-05T20:41:03.000Z Daily Mail U.K. 16
## 4873 TheSun 2020-01-05T20:40:00.000Z The Sun 11
## 4874 DailyMirror 2020-01-05T20:37:00.000Z The Mirror 3
## 4875 guardian 2020-01-05T20:34:54.000Z The Guardian 24
## 4876 DailyMirror 2020-01-05T20:34:00.000Z The Mirror 1
## 4877 TheSun 2020-01-05T20:32:58.000Z The Sun 3
## 4878 thetimes 2020-01-05T20:32:00.000Z The Times 8
## 4879 EveningStandard 2020-01-05T20:31:58.000Z Evening Standard 1
## 4880 MetroUK 2020-01-05T20:30:09.000Z Metro 3
## 4881 TheSun 2020-01-05T20:30:00.000Z The Sun 5
## 4882 EveningStandard 2020-01-05T20:28:02.000Z Evening Standard 4
## 4883 DailyMirror 2020-01-05T20:28:00.000Z The Mirror 4
## 4884 DailyMirror 2020-01-05T20:27:00.000Z The Mirror 2
## 4885 guardian 2020-01-05T20:23:20.000Z The Guardian 12
## 4886 guardian 2020-01-05T20:23:19.000Z The Guardian 31
## 4887 EveningStandard 2020-01-05T20:23:08.000Z Evening Standard 0
## 4888 TheSun 2020-01-05T20:22:10.000Z The Sun 3
## 4889 DailyMailUK 2020-01-05T20:21:01.000Z Daily Mail U.K. 1
## 4890 TheSun 2020-01-05T20:20:00.000Z The Sun 26
## 4891 guardian 2020-01-05T20:18:12.000Z The Guardian 13
## 4892 DailyMirror 2020-01-05T20:17:00.000Z The Mirror 2
## 4893 Telegraph 2020-01-05T20:16:19.000Z The Telegraph 20
## 4894 thetimes 2020-01-05T20:15:18.000Z The Times 5
## 4895 DailyMirror 2020-01-05T20:15:00.000Z The Mirror 3
## 4896 EveningStandard 2020-01-05T20:14:16.000Z Evening Standard 0
## 4897 TheSun 2020-01-05T20:12:19.000Z The Sun 1
## 4898 Telegraph 2020-01-05T20:10:45.000Z The Telegraph 13
## 4899 EveningStandard 2020-01-05T20:10:20.000Z Evening Standard 0
## 4900 DailyMirror 2020-01-05T20:10:00.000Z The Mirror 1
## 4901 TheSun 2020-01-05T20:10:00.000Z The Sun 27
## 4902 guardian 2020-01-05T20:07:23.000Z The Guardian 55
## 4903 EveningStandard 2020-01-05T20:06:24.000Z Evening Standard 1
## 4904 TheSun 2020-01-05T20:02:29.000Z The Sun 0
## 4905 DailyMirror 2020-01-05T20:01:16.000Z The Mirror 12
## 4906 MetroUK 2020-01-05T20:00:08.000Z Metro 7
## 4907 DailyMailUK 2020-01-05T20:00:04.000Z Daily Mail U.K. 0
## 4908 DailyMirror 2020-01-05T20:00:03.000Z The Mirror 4
## 4909 TheSun 2020-01-05T20:00:00.000Z The Sun 3
## 4910 thetimes 2020-01-05T19:59:35.000Z The Times 4
## 4911 EveningStandard 2020-01-05T19:59:30.000Z Evening Standard 0
## 4912 guardian 2020-01-05T19:58:38.000Z The Guardian 1
## 4913 DailyMirror 2020-01-05T19:58:00.000Z The Mirror 26
## 4914 Telegraph 2020-01-05T19:55:40.000Z The Telegraph 45
## 4915 DailyMirror 2020-01-05T19:53:00.000Z The Mirror 1
## 4916 TheSun 2020-01-05T19:52:33.000Z The Sun 0
## 4917 EveningStandard 2020-01-05T19:52:33.000Z Evening Standard 0
## 4918 DailyMirror 2020-01-05T19:52:00.000Z The Mirror 0
## 4919 DailyMirror 2020-01-05T19:51:00.000Z The Mirror 1
## 4920 guardian 2020-01-05T19:50:35.000Z The Guardian 104
## 4921 TheSun 2020-01-05T19:50:00.000Z The Sun 12
## 4922 EveningStandard 2020-01-05T19:48:38.000Z Evening Standard 0
## 4923 EveningStandard 2020-01-05T19:43:56.000Z Evening Standard 0
## 4924 thetimes 2020-01-05T19:43:42.000Z The Times 57
## 4925 DailyMirror 2020-01-05T19:43:00.000Z The Mirror 194
## 4926 TheSun 2020-01-05T19:42:43.000Z The Sun 15
## 4927 DailyMailUK 2020-01-05T19:42:05.000Z Daily Mail U.K. 12
## 4928 guardian 2020-01-05T19:41:43.000Z The Guardian 7
## 4929 TheSun 2020-01-05T19:40:00.000Z The Sun 65
## 4930 DailyMirror 2020-01-05T19:38:50.000Z The Mirror 18
## 4931 DailyMirror 2020-01-05T19:37:00.000Z The Mirror 6
## 4932 EveningStandard 2020-01-05T19:35:49.000Z Evening Standard 1
## 4933 Telegraph 2020-01-05T19:34:30.000Z The Telegraph 3
## 4934 guardian 2020-01-05T19:32:53.000Z The Guardian 2
## 4935 TheSun 2020-01-05T19:32:52.000Z The Sun 3
## 4936 DailyMirror 2020-01-05T19:31:40.000Z The Mirror 2
## 4937 EveningStandard 2020-01-05T19:31:24.000Z Evening Standard 0
## 4938 MetroUK 2020-01-05T19:30:08.000Z Metro 5
## 4939 DailyMirror 2020-01-05T19:30:06.000Z The Mirror 4
## 4940 TheSun 2020-01-05T19:30:00.000Z The Sun 12
## 4941 thetimes 2020-01-05T19:28:17.000Z The Times 3
## 4942 DailyMirror 2020-01-05T19:27:00.000Z The Mirror 3
## 4943 EveningStandard 2020-01-05T19:25:19.000Z Evening Standard 2
## 4944 guardian 2020-01-05T19:23:22.000Z The Guardian 27
## 4945 TheSun 2020-01-05T19:22:10.000Z The Sun 2
## 4946 DailyMailUK 2020-01-05T19:21:57.000Z Daily Mail U.K. 3
## 4947 TheSun 2020-01-05T19:20:00.000Z The Sun 28
## 4948 EveningStandard 2020-01-05T19:19:15.000Z Evening Standard 1
## 4949 DailyMirror 2020-01-05T19:18:00.000Z The Mirror 4
## 4950 EveningStandard 2020-01-05T19:15:20.000Z Evening Standard 1
## 4951 guardian 2020-01-05T19:12:35.000Z The Guardian 97
## 4952 guardian 2020-01-05T19:12:33.000Z The Guardian 20
## 4953 TheSun 2020-01-05T19:12:22.000Z The Sun 3
## 4954 thetimes 2020-01-05T19:10:27.000Z The Times 1
## 4955 EveningStandard 2020-01-05T19:10:23.000Z Evening Standard 0
## 4956 TheSun 2020-01-05T19:10:00.000Z The Sun 9
## 4957 DailyMirror 2020-01-05T19:10:00.000Z The Mirror 3
## 4958 guardian 2020-01-05T19:05:29.000Z The Guardian 6
## 4959 EveningStandard 2020-01-05T19:05:29.000Z Evening Standard 0
## 4960 TheSun 2020-01-05T19:02:28.000Z The Sun 2
## 4961 MetroUK 2020-01-05T19:00:05.000Z Metro 3
## 4962 DailyMailUK 2020-01-05T19:00:04.000Z Daily Mail U.K. 1
## 4963 TheSun 2020-01-05T19:00:00.000Z The Sun 4
## 4964 EveningStandard 2020-01-05T18:58:32.000Z Evening Standard 0
## 4965 guardian 2020-01-05T18:57:36.000Z The Guardian 5
## 4966 guardian 2020-01-05T18:57:33.000Z The Guardian 1462
## 4967 thetimes 2020-01-05T18:54:40.000Z The Times 9
## 4968 EveningStandard 2020-01-05T18:54:37.000Z Evening Standard 0
## 4969 TheSun 2020-01-05T18:52:38.000Z The Sun 1
## 4970 EveningStandard 2020-01-05T18:52:37.000Z Evening Standard 1
## 4971 DailyMirror 2020-01-05T18:52:00.000Z The Mirror 2
## 4972 TheSun 2020-01-05T18:51:00.000Z The Sun 15
## 4973 TheSun 2020-01-05T18:50:00.000Z The Sun 13
## 4974 DailyMirror 2020-01-05T18:49:00.000Z The Mirror 3
## 4975 guardian 2020-01-05T18:47:09.000Z The Guardian 2
## 4976 EveningStandard 2020-01-05T18:45:38.000Z Evening Standard 1
## 4977 DailyMirror 2020-01-05T18:44:01.000Z The Mirror 2
## 4978 DailyMailUK 2020-01-05T18:42:46.000Z Daily Mail U.K. 11
## 4979 TheSun 2020-01-05T18:42:36.000Z The Sun 0
## 4980 DailyMirror 2020-01-05T18:42:00.000Z The Mirror 296
## 4981 DailyMirror 2020-01-05T18:41:08.000Z The Mirror 2
## 4982 DailyMirror 2020-01-05T18:40:12.000Z The Mirror 13
## 4983 TheSun 2020-01-05T18:40:00.000Z The Sun 40
## 4984 guardian 2020-01-05T18:38:43.000Z The Guardian 5
## 4985 EveningStandard 2020-01-05T18:37:40.000Z Evening Standard 0
## 4986 DailyMirror 2020-01-05T18:35:00.000Z The Mirror 3
## 4987 DailyMirror 2020-01-05T18:35:00.000Z The Mirror 9
## 4988 DailyMirror 2020-01-05T18:35:00.000Z The Mirror 5
## 4989 TheSun 2020-01-05T18:32:46.000Z The Sun 7
## 4990 EveningStandard 2020-01-05T18:31:46.000Z Evening Standard 0
## 4991 DailyMailUK 2020-01-05T18:30:41.000Z Daily Mail U.K. 3
## 4992 MetroUK 2020-01-05T18:30:10.000Z Metro 1
## 4993 DailyMirror 2020-01-05T18:30:00.000Z The Mirror 4
## 4994 TheSun 2020-01-05T18:30:00.000Z The Sun 12
## 4995 guardian 2020-01-05T18:29:50.000Z The Guardian 9
## 4996 EveningStandard 2020-01-05T18:28:50.000Z Evening Standard 1
## 4997 TheSun 2020-01-05T18:22:56.000Z The Sun 2
## 4998 DailyMirror 2020-01-05T18:22:40.000Z The Mirror 3
## 4999 EveningStandard 2020-01-05T18:21:57.000Z Evening Standard 1
## 5000 TheSun 2020-01-05T18:21:39.000Z The Sun 3
## 5001 guardian 2020-01-05T18:21:14.000Z The Guardian 4
## 5002 guardian 2020-01-05T18:21:13.000Z The Guardian 18
## 5003 guardian 2020-01-05T18:21:12.000Z The Guardian 30
## 5004 guardian 2020-01-05T18:21:11.000Z The Guardian 42
## 5005 Telegraph 2020-01-05T18:21:03.000Z The Telegraph 9
## 5006 EveningStandard 2020-01-05T18:20:02.000Z Evening Standard 1
## 5007 TheSun 2020-01-05T18:20:00.000Z The Sun 15
## 5008 guardian 2020-01-05T18:19:02.000Z The Guardian 10
## 5009 DailyMirror 2020-01-05T18:19:00.000Z The Mirror 5
## 5010 DailyMirror 2020-01-05T18:17:00.000Z The Mirror 5
## 5011 DailyMirror 2020-01-05T18:15:26.000Z The Mirror 6
## 5012 EveningStandard 2020-01-05T18:13:02.000Z Evening Standard 1
## 5013 TheSun 2020-01-05T18:13:01.000Z The Sun 12
## 5014 EveningStandard 2020-01-05T18:11:02.000Z Evening Standard 1
## 5015 guardian 2020-01-05T18:10:03.000Z The Guardian 26
## 5016 DailyMirror 2020-01-05T18:10:00.000Z The Mirror 3
## 5017 TheSun 2020-01-05T18:10:00.000Z The Sun 4
## 5018 Telegraph 2020-01-05T18:06:10.000Z The Telegraph 1
## 5019 EveningStandard 2020-01-05T18:06:07.000Z Evening Standard 0
## 5020 EveningStandard 2020-01-05T18:03:10.000Z Evening Standard 0
## 5021 TheSun 2020-01-05T18:02:13.000Z The Sun 5
## 5022 TheSun 2020-01-05T18:00:24.000Z The Sun 8
## 5023 MetroUK 2020-01-05T18:00:11.000Z Metro 1
## 5024 DailyMailUK 2020-01-05T18:00:10.000Z Daily Mail U.K. 2
## 5025 TheSun 2020-01-05T18:00:00.000Z The Sun 10
## 5026 guardian 2020-01-05T17:58:05.000Z The Guardian 5
## 5027 guardian 2020-01-05T17:58:04.000Z The Guardian 7
## 5028 guardian 2020-01-05T17:58:04.000Z The Guardian 23
## 5029 guardian 2020-01-05T17:58:02.000Z The Guardian 5
## 5030 guardian 2020-01-05T17:58:01.000Z The Guardian 13
## 5031 DailyMirror 2020-01-05T17:57:00.000Z The Mirror 0
## 5032 EveningStandard 2020-01-05T17:55:17.000Z Evening Standard 1
## 5033 DailyMirror 2020-01-05T17:53:00.000Z The Mirror 3
## 5034 TheSun 2020-01-05T17:52:22.000Z The Sun 1
## 5035 DailyMirror 2020-01-05T17:52:00.000Z The Mirror 1
## 5036 DailyMirror 2020-01-05T17:50:27.000Z The Mirror 2
## 5037 TheSun 2020-01-05T17:50:00.000Z The Sun 15
## 5038 guardian 2020-01-05T17:49:24.000Z The Guardian 38
## 5039 Telegraph 2020-01-05T17:49:00.000Z The Telegraph 8
## 5040 EveningStandard 2020-01-05T17:48:26.000Z Evening Standard 1
## 5041 EveningStandard 2020-01-05T17:42:35.000Z Evening Standard 1
## 5042 TheSun 2020-01-05T17:42:35.000Z The Sun 4
## 5043 DailyMirror 2020-01-05T17:42:00.000Z The Mirror 206
## 5044 Telegraph 2020-01-05T17:40:38.000Z The Telegraph 4
## 5045 guardian 2020-01-05T17:40:35.000Z The Guardian 18
## 5046 TheSun 2020-01-05T17:40:00.000Z The Sun 16
## 5047 DailyMirror 2020-01-05T17:39:42.000Z The Mirror 3
## 5048 EveningStandard 2020-01-05T17:36:40.000Z Evening Standard 1
## 5049 DailyMirror 2020-01-05T17:36:00.000Z The Mirror 3
## 5050 guardian 2020-01-05T17:34:21.000Z The Guardian 2
## 5051 guardian 2020-01-05T17:34:20.000Z The Guardian 6
## 5052 guardian 2020-01-05T17:34:19.000Z The Guardian 9
## 5053 DailyMailUK 2020-01-05T17:34:06.000Z Daily Mail U.K. 5
## 5054 TheSun 2020-01-05T17:32:44.000Z The Sun 1
## 5055 DailyMirror 2020-01-05T17:32:19.000Z The Mirror 0
## 5056 EveningStandard 2020-01-05T17:31:44.000Z Evening Standard 0
## 5057 MetroUK 2020-01-05T17:30:05.000Z Metro 0
## 5058 TheSun 2020-01-05T17:30:00.000Z The Sun 15
## 5059 guardian 2020-01-05T17:29:42.000Z The Guardian 12
## 5060 DailyMirror 2020-01-05T17:25:13.000Z The Mirror 0
## 5061 EveningStandard 2020-01-05T17:24:46.000Z Evening Standard 0
## 5062 DailyMirror 2020-01-05T17:22:46.000Z The Mirror 30886
## 5063 TheSun 2020-01-05T17:22:41.000Z The Sun 2
## 5064 EveningStandard 2020-01-05T17:21:43.000Z Evening Standard 0
## 5065 guardian 2020-01-05T17:20:44.000Z The Guardian 1
## 5066 TheSun 2020-01-05T17:20:00.000Z The Sun 12
## 5067 Telegraph 2020-01-05T17:18:49.000Z The Telegraph 3
## 5068 EveningStandard 2020-01-05T17:17:48.000Z Evening Standard 1
## 5069 DailyMirror 2020-01-05T17:16:00.000Z The Mirror 1
## 5070 DailyMailUK 2020-01-05T17:15:05.000Z Daily Mail U.K. 1
## 5071 EveningStandard 2020-01-05T17:13:51.000Z Evening Standard 0
## 5072 TheSun 2020-01-05T17:12:51.000Z The Sun 1
## 5073 EveningStandard 2020-01-05T17:10:54.000Z Evening Standard 1
## 5074 TheSun 2020-01-05T17:10:00.000Z The Sun 12
## 5075 guardian 2020-01-05T17:09:22.000Z The Guardian 5
## 5076 EveningStandard 2020-01-05T17:06:54.000Z Evening Standard 3
## 5077 DailyMirror 2020-01-05T17:06:28.000Z The Mirror 2
## 5078 TheSun 2020-01-05T17:02:58.000Z The Sun 2
## 5079 EveningStandard 2020-01-05T17:02:00.000Z Evening Standard 1
## 5080 guardian 2020-01-05T17:00:26.000Z The Guardian 36
## 5081 MetroUK 2020-01-05T17:00:12.000Z Metro 0
## 5082 DailyMailUK 2020-01-05T17:00:09.000Z Daily Mail U.K. 7
## 5083 EveningStandard 2020-01-05T17:00:01.000Z Evening Standard 1
## 5084 TheSun 2020-01-05T17:00:01.000Z The Sun 24
## 5085 Telegraph 2020-01-05T16:57:12.000Z The Telegraph 3
## 5086 EveningStandard 2020-01-05T16:57:05.000Z Evening Standard 2
## 5087 guardian 2020-01-05T16:55:09.000Z The Guardian 40
## 5088 EveningStandard 2020-01-05T16:54:08.000Z Evening Standard 0
## 5089 DailyMirror 2020-01-05T16:53:00.000Z The Mirror 1
## 5090 EveningStandard 2020-01-05T16:52:11.000Z Evening Standard 2
## 5091 TheSun 2020-01-05T16:52:10.000Z The Sun 7
## 5092 MetroUK 2020-01-05T16:51:33.000Z Metro 8
## 5093 MetroUK 2020-01-05T16:51:30.000Z Metro 6
## 5094 DailyMirror 2020-01-05T16:50:01.000Z The Mirror 2
## 5095 TheSun 2020-01-05T16:50:00.000Z The Sun 21
## 5096 DailyMirror 2020-01-05T16:49:00.000Z The Mirror 2
## 5097 guardian 2020-01-05T16:47:34.000Z The Guardian 0
## 5098 EveningStandard 2020-01-05T16:46:17.000Z Evening Standard 1
## 5099 guardian 2020-01-05T16:45:13.000Z The Guardian 6
## 5100 TheSun 2020-01-05T16:42:15.000Z The Sun 2
## 5101 DailyMirror 2020-01-05T16:42:01.000Z The Mirror 4
## 5102 TheSun 2020-01-05T16:40:00.000Z The Sun 33
## 5103 EveningStandard 2020-01-05T16:38:31.000Z Evening Standard 2
## 5104 DailyMirror 2020-01-05T16:37:58.000Z The Mirror 7
## 5105 guardian 2020-01-05T16:36:34.000Z The Guardian 7
## 5106 EveningStandard 2020-01-05T16:36:34.000Z Evening Standard 3
## 5107 DailyMirror 2020-01-05T16:36:00.000Z The Mirror 3
## 5108 Telegraph 2020-01-05T16:35:37.000Z The Telegraph 24
## 5109 DailyMirror 2020-01-05T16:34:00.000Z The Mirror 1
## 5110 EveningStandard 2020-01-05T16:33:37.000Z Evening Standard 0
## 5111 DailyMirror 2020-01-05T16:32:57.000Z The Mirror 3
## 5112 TheSun 2020-01-05T16:32:37.000Z The Sun 3
## 5113 EveningStandard 2020-01-05T16:31:37.000Z Evening Standard 1
## 5114 DailyMailUK 2020-01-05T16:30:10.000Z Daily Mail U.K. 8
## 5115 TheSun 2020-01-05T16:30:00.000Z The Sun 5
## 5116 MetroUK 2020-01-05T16:29:38.000Z Metro 14
## 5117 MetroUK 2020-01-05T16:29:05.000Z Metro 1
## 5118 EveningStandard 2020-01-05T16:28:22.000Z Evening Standard 4
## 5119 guardian 2020-01-05T16:28:10.000Z The Guardian 9
## 5120 DailyMirror 2020-01-05T16:25:00.000Z The Mirror 0
## 5121 EveningStandard 2020-01-05T16:24:26.000Z Evening Standard 0
## 5122 TheSun 2020-01-05T16:23:49.000Z The Sun 6
## 5123 TheSun 2020-01-05T16:22:48.000Z The Sun 4
## 5124 EveningStandard 2020-01-05T16:22:47.000Z Evening Standard 2
## 5125 guardian 2020-01-05T16:22:16.000Z The Guardian 3
## 5126 guardian 2020-01-05T16:22:16.000Z The Guardian 4
## 5127 guardian 2020-01-05T16:22:15.000Z The Guardian 1
## 5128 TheSun 2020-01-05T16:20:00.000Z The Sun 8
## 5129 guardian 2020-01-05T16:18:40.000Z The Guardian 13
## 5130 EveningStandard 2020-01-05T16:17:40.000Z Evening Standard 7
## 5131 DailyMirror 2020-01-05T16:17:00.000Z The Mirror 23
## 5132 Telegraph 2020-01-05T16:15:39.000Z The Telegraph 0
## 5133 DailyMirror 2020-01-05T16:15:28.000Z The Mirror 0
## 5134 TheSun 2020-01-05T16:12:37.000Z The Sun 8
## 5135 EveningStandard 2020-01-05T16:12:37.000Z Evening Standard 0
## 5136 TheSun 2020-01-05T16:10:00.000Z The Sun 15
## 5137 guardian 2020-01-05T16:09:42.000Z The Guardian 1
## 5138 EveningStandard 2020-01-05T16:07:43.000Z Evening Standard 3
## 5139 DailyMirror 2020-01-05T16:05:00.000Z The Mirror 1
## 5140 DailyMirror 2020-01-05T16:03:03.000Z The Mirror 5
## 5141 TheSun 2020-01-05T16:02:55.000Z The Sun 5
## 5142 guardian 2020-01-05T16:01:00.000Z The Guardian 15
## 5143 EveningStandard 2020-01-05T16:00:57.000Z Evening Standard 2
## 5144 MetroUK 2020-01-05T16:00:17.000Z Metro 3
## 5145 DailyMailUK 2020-01-05T16:00:11.000Z Daily Mail U.K. 1
## 5146 TheSun 2020-01-05T16:00:00.000Z The Sun 33
## 5147 Telegraph 2020-01-05T15:54:38.000Z The Telegraph 4
## 5148 DailyMirror 2020-01-05T15:53:41.000Z The Mirror 4
## 5149 EveningStandard 2020-01-05T15:53:28.000Z Evening Standard 1
## 5150 TheSun 2020-01-05T15:52:38.000Z The Sun 6
## 5151 EveningStandard 2020-01-05T15:51:37.000Z Evening Standard 1
## 5152 TheSun 2020-01-05T15:50:00.000Z The Sun 6
## 5153 guardian 2020-01-05T15:49:39.000Z The Guardian 10
## 5154 MetroUK 2020-01-05T15:49:19.000Z Metro 3
## 5155 MetroUK 2020-01-05T15:49:12.000Z Metro 1
## 5156 MetroUK 2020-01-05T15:47:53.000Z Metro 16
## 5157 DailyMailUK 2020-01-05T15:45:04.000Z Daily Mail U.K. 5
## 5158 EveningStandard 2020-01-05T15:44:44.000Z Evening Standard 0
## 5159 TheSun 2020-01-05T15:42:49.000Z The Sun 1
## 5160 thetimes 2020-01-05T15:41:25.000Z The Times 1
## 5161 TheSun 2020-01-05T15:40:00.000Z The Sun 5
## 5162 guardian 2020-01-05T15:37:30.000Z The Guardian 70
## 5163 EveningStandard 2020-01-05T15:36:57.000Z Evening Standard 0
## 5164 DailyMirror 2020-01-05T15:36:00.000Z The Mirror 2
## 5165 DailyMirror 2020-01-05T15:35:21.000Z The Mirror 9
## 5166 guardian 2020-01-05T15:34:39.000Z The Guardian 6
## 5167 guardian 2020-01-05T15:34:38.000Z The Guardian 2
## 5168 guardian 2020-01-05T15:34:36.000Z The Guardian 2
## 5169 EveningStandard 2020-01-05T15:34:00.000Z Evening Standard 0
## 5170 Telegraph 2020-01-05T15:33:03.000Z The Telegraph 5
## 5171 TheSun 2020-01-05T15:33:00.000Z The Sun 0
## 5172 DailyMirror 2020-01-05T15:33:00.000Z The Mirror 0
## 5173 DailyMailUK 2020-01-05T15:31:35.000Z Daily Mail U.K. 50
## 5174 guardian 2020-01-05T15:30:07.000Z The Guardian 22
## 5175 TheSun 2020-01-05T15:30:00.000Z The Sun 17
## 5176 MetroUK 2020-01-05T15:29:08.000Z Metro 6
## 5177 EveningStandard 2020-01-05T15:28:32.000Z Evening Standard 2
## 5178 MetroUK 2020-01-05T15:24:37.000Z Metro 13
## 5179 DailyMailUK 2020-01-05T15:24:01.000Z Daily Mail U.K. 6
## 5180 TheSun 2020-01-05T15:22:27.000Z The Sun 3
## 5181 EveningStandard 2020-01-05T15:21:28.000Z Evening Standard 0
## 5182 TheSun 2020-01-05T15:20:00.000Z The Sun 27
## 5183 guardian 2020-01-05T15:19:28.000Z The Guardian 69
## 5184 EveningStandard 2020-01-05T15:17:31.000Z Evening Standard 0
## 5185 DailyMirror 2020-01-05T15:17:01.000Z The Mirror 4
## 5186 guardian 2020-01-05T15:15:11.000Z The Guardian 59
## 5187 EveningStandard 2020-01-05T15:14:35.000Z Evening Standard 1
## 5188 TheSun 2020-01-05T15:12:37.000Z The Sun 5
## 5189 guardian 2020-01-05T15:11:08.000Z The Guardian 10
## 5190 guardian 2020-01-05T15:11:07.000Z The Guardian 25
## 5191 Telegraph 2020-01-05T15:10:18.000Z The Telegraph 11
## 5192 TheSun 2020-01-05T15:10:00.000Z The Sun 19
## 5193 DailyMirror 2020-01-05T15:07:41.000Z The Mirror 9
## 5194 EveningStandard 2020-01-05T15:06:55.000Z Evening Standard 0
## 5195 guardian 2020-01-05T15:05:45.000Z The Guardian 7
## 5196 TheSun 2020-01-05T15:02:48.000Z The Sun 2
## 5197 DailyMailUK 2020-01-05T15:01:34.000Z Daily Mail U.K. 12
## 5198 EveningStandard 2020-01-05T15:00:54.000Z Evening Standard 0
## 5199 DailyMailUK 2020-01-05T15:00:04.000Z Daily Mail U.K. 0
## 5200 MetroUK 2020-01-05T15:00:03.000Z Metro 13
## 5201 DailyMirror 2020-01-05T15:00:01.000Z The Mirror 1
## 5202 TheSun 2020-01-05T15:00:00.000Z The Sun 21
## 5203 Telegraph 2020-01-05T14:59:54.000Z The Telegraph 0
## 5204 EveningStandard 2020-01-05T14:56:52.000Z Evening Standard 1
## 5205 EveningStandard 2020-01-05T14:56:48.000Z Evening Standard 21
## 5206 guardian 2020-01-05T14:54:56.000Z The Guardian 11
## 5207 DailyMirror 2020-01-05T14:53:06.000Z The Mirror 9
## 5208 EveningStandard 2020-01-05T14:52:25.000Z Evening Standard 1
## 5209 TheSun 2020-01-05T14:52:24.000Z The Sun 2
## 5210 DailyMirror 2020-01-05T14:50:48.000Z The Mirror 5
## 5211 TheSun 2020-01-05T14:50:00.000Z The Sun 59
## 5212 DailyMirror 2020-01-05T14:49:06.000Z The Mirror 1
## 5213 DailyMirror 2020-01-05T14:48:03.000Z The Mirror 21
## 5214 EveningStandard 2020-01-05T14:47:18.000Z Evening Standard 0
## 5215 guardian 2020-01-05T14:46:21.000Z The Guardian 20
## 5216 guardian 2020-01-05T14:46:21.000Z The Guardian 11
## 5217 Telegraph 2020-01-05T14:45:39.000Z The Telegraph 40
## 5218 guardian 2020-01-05T14:43:01.000Z The Guardian 71
## 5219 TheSun 2020-01-05T14:42:24.000Z The Sun 2
## 5220 EveningStandard 2020-01-05T14:40:07.000Z Evening Standard 1
## 5221 TheSun 2020-01-05T14:40:00.000Z The Sun 16
## 5222 DailyMirror 2020-01-05T14:36:00.000Z The Mirror 1
## 5223 EveningStandard 2020-01-05T14:34:18.000Z Evening Standard 3
## 5224 DailyMirror 2020-01-05T14:34:00.000Z The Mirror 6
## 5225 guardian 2020-01-05T14:33:18.000Z The Guardian 6
## 5226 TheSun 2020-01-05T14:32:20.000Z The Sun 4
## 5227 DailyMailUK 2020-01-05T14:31:04.000Z Daily Mail U.K. 0
## 5228 MetroUK 2020-01-05T14:30:04.000Z Metro 15
## 5229 TheSun 2020-01-05T14:30:00.000Z The Sun 6
## 5230 EveningStandard 2020-01-05T14:27:29.000Z Evening Standard 0
## 5231 DailyMirror 2020-01-05T14:26:44.000Z The Mirror 2
## 5232 TheSun 2020-01-05T14:22:22.000Z The Sun 4
## 5233 guardian 2020-01-05T14:22:04.000Z The Guardian 3
## 5234 DailyMirror 2020-01-05T14:21:55.000Z The Mirror 11
## 5235 EveningStandard 2020-01-05T14:21:22.000Z Evening Standard 0
## 5236 Telegraph 2020-01-05T14:20:28.000Z The Telegraph 13
## 5237 TheSun 2020-01-05T14:20:00.000Z The Sun 15
## 5238 DailyMirror 2020-01-05T14:19:00.000Z The Mirror 3
## 5239 DailyMirror 2020-01-05T14:17:00.000Z The Mirror 16
## 5240 EveningStandard 2020-01-05T14:15:41.000Z Evening Standard 2
## 5241 guardian 2020-01-05T14:12:43.000Z The Guardian 7
## 5242 TheSun 2020-01-05T14:12:43.000Z The Sun 4
## 5243 TheSun 2020-01-05T14:10:00.000Z The Sun 5
## 5244 EveningStandard 2020-01-05T14:08:46.000Z Evening Standard 0
## 5245 EveningStandard 2020-01-05T14:02:55.000Z Evening Standard 1
## 5246 TheSun 2020-01-05T14:02:54.000Z The Sun 5
## 5247 DailyMirror 2020-01-05T14:02:47.000Z The Mirror 8
## 5248 guardian 2020-01-05T14:01:38.000Z The Guardian 16
## 5249 MetroUK 2020-01-05T14:00:06.000Z Metro 5
## 5250 DailyMailUK 2020-01-05T14:00:06.000Z Daily Mail U.K. 16
## 5251 TheSun 2020-01-05T14:00:00.000Z The Sun 7
## 5252 guardian 2020-01-05T13:57:12.000Z The Guardian 4
## 5253 guardian 2020-01-05T13:57:11.000Z The Guardian 28
## 5254 guardian 2020-01-05T13:57:10.000Z The Guardian 1
## 5255 EveningStandard 2020-01-05T13:55:48.000Z Evening Standard 2
## 5256 TheSun 2020-01-05T13:52:53.000Z The Sun 4
## 5257 DailyMirror 2020-01-05T13:51:18.000Z The Mirror 15
## 5258 DailyMirror 2020-01-05T13:50:59.000Z The Mirror 2
## 5259 DailyMirror 2020-01-05T13:50:36.000Z The Mirror 2
## 5260 TheSun 2020-01-05T13:50:00.000Z The Sun 34
## 5261 guardian 2020-01-05T13:49:56.000Z The Guardian 37
## 5262 EveningStandard 2020-01-05T13:48:56.000Z Evening Standard 1
## 5263 TheSun 2020-01-05T13:42:56.000Z The Sun 53
## 5264 EveningStandard 2020-01-05T13:42:51.000Z Evening Standard 0
## 5265 DailyMailUK 2020-01-05T13:40:41.000Z Daily Mail U.K. 86
## 5266 TheSun 2020-01-05T13:40:00.000Z The Sun 16
## 5267 guardian 2020-01-05T13:38:09.000Z The Guardian 32
## 5268 guardian 2020-01-05T13:37:58.000Z The Guardian 62
## 5269 DailyMirror 2020-01-05T13:35:00.000Z The Mirror 3
## 5270 TheSun 2020-01-05T13:33:10.000Z The Sun 20
## 5271 EveningStandard 2020-01-05T13:32:48.000Z Evening Standard 7
## 5272 MetroUK 2020-01-05T13:30:05.000Z Metro 2
## 5273 DailyMailUK 2020-01-05T13:30:04.000Z Daily Mail U.K. 4
## 5274 TheSun 2020-01-05T13:30:00.000Z The Sun 393
## 5275 EveningStandard 2020-01-05T13:28:04.000Z Evening Standard 2
## 5276 DailyMirror 2020-01-05T13:27:14.000Z The Mirror 3
## 5277 guardian 2020-01-05T13:25:09.000Z The Guardian 4
## 5278 EveningStandard 2020-01-05T13:24:09.000Z Evening Standard 1
## 5279 DailyMirror 2020-01-05T13:22:14.000Z The Mirror 3
## 5280 TheSun 2020-01-05T13:22:11.000Z The Sun 16
## 5281 DailyMirror 2020-01-05T13:20:46.000Z The Mirror 7
## 5282 TheSun 2020-01-05T13:20:00.000Z The Sun 126
## 5283 EveningStandard 2020-01-05T13:18:36.000Z Evening Standard 3
## 5284 EveningStandard 2020-01-05T13:15:25.000Z Evening Standard 0
## 5285 DailyMirror 2020-01-05T13:14:08.000Z The Mirror 1
## 5286 DailyMirror 2020-01-05T13:13:00.000Z The Mirror 3
## 5287 TheSun 2020-01-05T13:12:50.000Z The Sun 1
## 5288 guardian 2020-01-05T13:12:15.000Z The Guardian 8
## 5289 EveningStandard 2020-01-05T13:11:39.000Z Evening Standard 2
## 5290 TheSun 2020-01-05T13:10:47.000Z The Sun 0
## 5291 TheSun 2020-01-05T13:10:00.000Z The Sun 7
## 5292 guardian 2020-01-05T13:07:43.000Z The Guardian 50
## 5293 DailyMirror 2020-01-05T13:06:00.000Z The Mirror 0
## 5294 EveningStandard 2020-01-05T13:05:47.000Z Evening Standard 0
## 5295 TheSun 2020-01-05T13:02:53.000Z The Sun 6
## 5296 DailyMailUK 2020-01-05T13:02:34.000Z Daily Mail U.K. 115
## 5297 EveningStandard 2020-01-05T13:00:35.000Z Evening Standard 3
## 5298 MetroUK 2020-01-05T13:00:04.000Z Metro 3
## 5299 DailyMailUK 2020-01-05T13:00:03.000Z Daily Mail U.K. 6
## 5300 TheSun 2020-01-05T13:00:00.000Z The Sun 11
## 5301 EveningStandard 2020-01-05T12:55:22.000Z Evening Standard 0
## 5302 guardian 2020-01-05T12:55:21.000Z The Guardian 20
## 5303 TheSun 2020-01-05T12:52:24.000Z The Sun 1
## 5304 EveningStandard 2020-01-05T12:50:14.000Z Evening Standard 1
## 5305 TheSun 2020-01-05T12:50:00.000Z The Sun 27
## 5306 DailyMirror 2020-01-05T12:49:14.000Z The Mirror 2
## 5307 guardian 2020-01-05T12:47:56.000Z The Guardian 44
## 5308 DailyMailUK 2020-01-05T12:47:24.000Z Daily Mail U.K. 6
## 5309 DailyMirror 2020-01-05T12:46:17.000Z The Mirror 4
## 5310 DailyMirror 2020-01-05T12:46:15.000Z The Mirror 4
## 5311 guardian 2020-01-05T12:45:32.000Z The Guardian 22
## 5312 EveningStandard 2020-01-05T12:44:32.000Z Evening Standard 0
## 5313 DailyMirror 2020-01-05T12:42:30.000Z The Mirror 8
## 5314 EveningStandard 2020-01-05T12:40:46.000Z Evening Standard 1
## 5315 TheSun 2020-01-05T12:40:00.000Z The Sun 3
## 5316 Telegraph 2020-01-05T12:38:50.000Z The Telegraph 25
## 5317 EveningStandard 2020-01-05T12:36:50.000Z Evening Standard 0
## 5318 DailyMirror 2020-01-05T12:36:00.000Z The Mirror 4
## 5319 DailyMirror 2020-01-05T12:35:00.000Z The Mirror 2
## 5320 guardian 2020-01-05T12:33:52.000Z The Guardian 10
## 5321 TheSun 2020-01-05T12:32:55.000Z The Sun 2
## 5322 DailyMirror 2020-01-05T12:32:35.000Z The Mirror 2
## 5323 EveningStandard 2020-01-05T12:31:47.000Z Evening Standard 0
## 5324 MetroUK 2020-01-05T12:30:05.000Z Metro 2
## 5325 DailyMailUK 2020-01-05T12:30:05.000Z Daily Mail U.K. 0
## 5326 TheSun 2020-01-05T12:30:00.000Z The Sun 3
## 5327 EveningStandard 2020-01-05T12:27:16.000Z Evening Standard 1
## 5328 guardian 2020-01-05T12:26:39.000Z The Guardian 36
## 5329 DailyMailUK 2020-01-05T12:22:37.000Z Daily Mail U.K. 13
## 5330 TheSun 2020-01-05T12:22:22.000Z The Sun 6
## 5331 EveningStandard 2020-01-05T12:22:22.000Z Evening Standard 2
## 5332 DailyMailUK 2020-01-05T12:22:02.000Z Daily Mail U.K. 13
## 5333 guardian 2020-01-05T12:21:51.000Z The Guardian 219
## 5334 DailyMirror 2020-01-05T12:21:00.000Z The Mirror 2
## 5335 TheSun 2020-01-05T12:20:00.000Z The Sun 56
## 5336 DailyMirror 2020-01-05T12:19:48.000Z The Mirror 3
## 5337 EveningStandard 2020-01-05T12:17:43.000Z Evening Standard 3
## 5338 guardian 2020-01-05T12:17:09.000Z The Guardian 6
## 5339 guardian 2020-01-05T12:13:48.000Z The Guardian 13
## 5340 EveningStandard 2020-01-05T12:13:47.000Z Evening Standard 1
## 5341 TheSun 2020-01-05T12:12:47.000Z The Sun 8
## 5342 DailyMirror 2020-01-05T12:11:00.000Z The Mirror 4
## 5343 EveningStandard 2020-01-05T12:10:50.000Z Evening Standard 1
## 5344 TheSun 2020-01-05T12:10:00.000Z The Sun 11
## 5345 EveningStandard 2020-01-05T12:05:55.000Z Evening Standard 1
## 5346 TheSun 2020-01-05T12:02:58.000Z The Sun 1
## 5347 EveningStandard 2020-01-05T12:01:58.000Z Evening Standard 1
## 5348 guardian 2020-01-05T12:01:42.000Z The Guardian 13
## 5349 guardian 2020-01-05T12:01:40.000Z The Guardian 6
## 5350 MetroUK 2020-01-05T12:00:11.000Z Metro 27
## 5351 MetroUK 2020-01-05T12:00:10.000Z Metro 2
## 5352 DailyMailUK 2020-01-05T12:00:10.000Z Daily Mail U.K. 9
## 5353 TheSun 2020-01-05T12:00:00.000Z The Sun 3
## 5354 DailyMirror 2020-01-05T11:57:27.000Z The Mirror 5
## 5355 EveningStandard 2020-01-05T11:57:04.000Z Evening Standard 2
## 5356 TheSun 2020-01-05T11:56:37.000Z The Sun 4
## 5357 DailyMirror 2020-01-05T11:54:15.000Z The Mirror 8
## 5358 EveningStandard 2020-01-05T11:53:06.000Z Evening Standard 3
## 5359 TheSun 2020-01-05T11:52:10.000Z The Sun 1
## 5360 DailyMirror 2020-01-06T10:18:12.000Z The Mirror 3
## 5361 guardian 2020-01-06T10:17:17.000Z The Guardian 18
## 5362 MetroUK 2020-01-06T10:16:55.000Z Metro 7
## 5363 thetimes 2020-01-06T10:16:24.000Z The Times 8
## 5364 TheSun 2020-01-06T10:15:54.000Z The Sun 2
## 5365 DailyMirror 2020-01-06T10:15:20.000Z The Mirror 8
## 5366 TheSun 2020-01-06T10:12:27.000Z The Sun 5
## 5367 guardian 2020-01-06T10:10:41.000Z The Guardian 24
## 5368 Telegraph 2020-01-06T10:10:35.000Z The Telegraph 7
## 5369 DailyMirror 2020-01-06T10:10:27.000Z The Mirror 3
## 5370 DailyMailUK 2020-01-06T10:10:04.000Z Daily Mail U.K. 5
## 5371 TheSun 2020-01-06T10:10:00.000Z The Sun 107
## 5372 EveningStandard 2020-01-06T10:08:14.000Z Evening Standard 0
## 5373 DailyMailUK 2020-01-06T10:04:50.000Z Daily Mail U.K. 7
## 5374 guardian 2020-01-06T10:03:22.000Z The Guardian 9
## 5375 DailyMirror 2020-01-06T10:03:15.000Z The Mirror 4
## 5376 TheSun 2020-01-06T10:02:23.000Z The Sun 13
## 5377 TheSun 2020-01-06T10:02:22.000Z The Sun 4
## 5378 MetroUK 2020-01-06T10:00:06.000Z Metro 14
## 5379 TheSun 2020-01-06T10:00:00.000Z The Sun 15
## 5380 DailyMailUK 2020-01-06T09:59:03.000Z Daily Mail U.K. 4
## 5381 Telegraph 2020-01-06T09:58:09.000Z The Telegraph 7
## 5382 EveningStandard 2020-01-06T09:56:29.000Z Evening Standard 10
## 5383 TheSun 2020-01-06T09:56:28.000Z The Sun 6
## 5384 DailyMirror 2020-01-06T09:56:00.000Z The Mirror 3
## 5385 DailyMirror 2020-01-06T09:52:57.000Z The Mirror 5
## 5386 DailyMirror 2020-01-06T09:52:57.000Z The Mirror 2
## 5387 TheSun 2020-01-06T09:52:12.000Z The Sun 2
## 5388 EveningStandard 2020-01-06T09:51:15.000Z Evening Standard 3
## 5389 DailyMirror 2020-01-06T09:50:30.000Z The Mirror 2
## 5390 DailyMailUK 2020-01-06T09:50:03.000Z Daily Mail U.K. 5
## 5391 TheSun 2020-01-06T09:50:00.000Z The Sun 34
## 5392 TheSun 2020-01-06T09:50:00.000Z The Sun 15
## 5393 Telegraph 2020-01-06T09:49:30.000Z The Telegraph 5
## 5394 DailyMailUK 2020-01-06T09:46:49.000Z Daily Mail U.K. 2
## 5395 Telegraph 2020-01-06T09:45:16.000Z The Telegraph 1
## 5396 EveningStandard 2020-01-06T09:45:13.000Z Evening Standard 1
## 5397 guardian 2020-01-06T09:44:23.000Z The Guardian 6
## 5398 TheSun 2020-01-06T09:44:11.000Z The Sun 4
## 5399 TheSun 2020-01-06T09:42:16.000Z The Sun 4
## 5400 DailyMirror 2020-01-06T09:41:53.000Z The Mirror 11
## 5401 MetroUK 2020-01-06T09:40:39.000Z Metro 2
## 5402 EveningStandard 2020-01-06T09:40:18.000Z Evening Standard 4
## 5403 TheSun 2020-01-06T09:40:00.000Z The Sun 8
## 5404 guardian 2020-01-06T09:39:18.000Z The Guardian 8
## 5405 DailyMirror 2020-01-06T09:38:48.000Z The Mirror 2
## 5406 DailyMailUK 2020-01-06T09:37:53.000Z Daily Mail U.K. 5
## 5407 TheSun 2020-01-06T09:36:59.000Z The Sun 3
## 5408 DailyMailUK 2020-01-06T09:36:49.000Z Daily Mail U.K. 12
## 5409 DailyMirror 2020-01-06T09:36:45.000Z The Mirror 1
## 5410 thetimes 2020-01-06T09:35:26.000Z The Times 14
## 5411 Telegraph 2020-01-06T09:32:28.000Z The Telegraph 25
## 5412 TheSun 2020-01-06T09:32:25.000Z The Sun 2
## 5413 guardian 2020-01-06T09:30:26.000Z The Guardian 4
## 5414 TheSun 2020-01-06T09:30:00.000Z The Sun 73
## 5415 EveningStandard 2020-01-06T09:29:31.000Z Evening Standard 0
## 5416 DailyMirror 2020-01-06T09:29:12.000Z The Mirror 2
## 5417 DailyMirror 2020-01-06T09:28:00.000Z The Mirror 1
## 5418 DailyMirror 2020-01-06T09:26:11.000Z The Mirror 1
## 5419 DailyMailUK 2020-01-06T09:25:57.000Z Daily Mail U.K. 10
## 5420 guardian 2020-01-06T09:24:58.000Z The Guardian 15
## 5421 DailyMailUK 2020-01-06T09:24:26.000Z Daily Mail U.K. 19
## 5422 DailyMirror 2020-01-06T09:23:09.000Z The Mirror 6
## 5423 TheSun 2020-01-06T09:22:35.000Z The Sun 32
## 5424 DailyMirror 2020-01-06T09:21:21.000Z The Mirror 5
## 5425 DailyMirror 2020-01-06T09:21:13.000Z The Mirror 10
## 5426 DailyMirror 2020-01-06T09:20:30.000Z The Mirror 11
## 5427 DailyMailUK 2020-01-06T09:20:07.000Z Daily Mail U.K. 14
## 5428 TheSun 2020-01-06T09:20:00.000Z The Sun 13
## 5429 Telegraph 2020-01-06T09:19:38.000Z The Telegraph 10
## 5430 guardian 2020-01-06T09:19:36.000Z The Guardian 2
## 5431 EveningStandard 2020-01-06T09:18:39.000Z Evening Standard 1
## 5432 TheSun 2020-01-06T09:17:22.000Z The Sun 2
## 5433 TheSun 2020-01-06T09:15:45.000Z The Sun 5
## 5434 DailyMirror 2020-01-06T09:15:34.000Z The Mirror 4
## 5435 DailyMirror 2020-01-06T09:15:00.000Z The Mirror 3
## 5436 thetimes 2020-01-06T09:12:45.000Z The Times 27
## 5437 TheSun 2020-01-06T09:12:07.000Z The Sun 2
## 5438 DailyMirror 2020-01-06T09:11:23.000Z The Mirror 10
## 5439 DailyMailUK 2020-01-06T09:10:03.000Z Daily Mail U.K. 3
## 5440 TheSun 2020-01-06T09:10:00.000Z The Sun 20
## 5441 EveningStandard 2020-01-06T09:08:51.000Z Evening Standard 2
## 5442 guardian 2020-01-06T09:07:47.000Z The Guardian 2
## 5443 guardian 2020-01-06T09:07:47.000Z The Guardian 5
## 5444 Telegraph 2020-01-06T09:06:54.000Z The Telegraph 40
## 5445 DailyMirror 2020-01-06T09:05:00.000Z The Mirror 2
## 5446 DailyMailUK 2020-01-06T09:04:14.000Z Daily Mail U.K. 18
## 5447 DailyMirror 2020-01-06T09:04:04.000Z The Mirror 147
## 5448 TheSun 2020-01-06T09:02:55.000Z The Sun 1
## 5449 DailyMirror 2020-01-06T09:02:53.000Z The Mirror 4
## 5450 TheSun 2020-01-06T09:02:48.000Z The Sun 4
## 5451 MetroUK 2020-01-06T09:02:48.000Z Metro 4
## 5452 DailyMirror 2020-01-06T09:02:30.000Z The Mirror 20
## 5453 DailyMirror 2020-01-06T09:02:01.000Z The Mirror 7
## 5454 DailyMailUK 2020-01-06T09:00:50.000Z Daily Mail U.K. 5
## 5455 MetroUK 2020-01-06T09:00:09.000Z Metro 8
## 5456 DailyMailUK 2020-01-06T08:59:04.000Z Daily Mail U.K. 2
## 5457 EveningStandard 2020-01-06T08:58:33.000Z Evening Standard 1
## 5458 DailyMirror 2020-01-06T08:57:34.000Z The Mirror 4
## 5459 thetimes 2020-01-06T08:56:03.000Z The Times 3
## 5460 guardian 2020-01-06T08:54:48.000Z The Guardian 161
## 5461 guardian 2020-01-06T08:54:24.000Z The Guardian 18
## 5462 Telegraph 2020-01-06T08:54:08.000Z The Telegraph 12
## 5463 DailyMirror 2020-01-06T08:54:00.000Z The Mirror 1
## 5464 DailyMirror 2020-01-06T08:53:51.000Z The Mirror 4
## 5465 DailyMirror 2020-01-06T08:53:35.000Z The Mirror 2
## 5466 TheSun 2020-01-06T08:52:08.000Z The Sun 4
## 5467 DailyMailUK 2020-01-06T08:52:06.000Z Daily Mail U.K. 7
## 5468 TheSun 2020-01-06T08:47:22.000Z The Sun 5
## 5469 EveningStandard 2020-01-06T08:47:10.000Z Evening Standard 2
## 5470 DailyMailUK 2020-01-06T08:45:58.000Z Daily Mail U.K. 27
## 5471 TheSun 2020-01-06T08:45:05.000Z The Sun 2
## 5472 guardian 2020-01-06T08:44:46.000Z The Guardian 8
## 5473 guardian 2020-01-06T08:44:46.000Z The Guardian 10
## 5474 DailyMirror 2020-01-06T08:42:51.000Z The Mirror 3
## 5475 TheSun 2020-01-06T08:42:20.000Z The Sun 1
## 5476 TheSun 2020-01-06T08:40:04.000Z The Sun 5
## 5477 Telegraph 2020-01-06T08:39:22.000Z The Telegraph 2
## 5478 DailyMailUK 2020-01-06T08:38:45.000Z Daily Mail U.K. 21
## 5479 DailyMirror 2020-01-06T08:37:23.000Z The Mirror 7
## 5480 guardian 2020-01-06T08:36:03.000Z The Guardian 7
## 5481 EveningStandard 2020-01-06T08:33:56.000Z Evening Standard 0
## 5482 TheSun 2020-01-06T08:32:57.000Z The Sun 1
## 5483 DailyMailUK 2020-01-06T08:30:06.000Z Daily Mail U.K. 3
## 5484 TheSun 2020-01-06T08:30:00.000Z The Sun 15
## 5485 DailyMirror 2020-01-06T08:29:33.000Z The Mirror 4
## 5486 DailyMailUK 2020-01-06T08:29:26.000Z Daily Mail U.K. 12
## 5487 TheSun 2020-01-06T08:28:43.000Z The Sun 3
## 5488 DailyMirror 2020-01-06T08:27:32.000Z The Mirror 2
## 5489 EveningStandard 2020-01-06T08:24:20.000Z Evening Standard 3
## 5490 Telegraph 2020-01-06T08:23:10.000Z The Telegraph 5
## 5491 guardian 2020-01-06T08:22:24.000Z The Guardian 23
## 5492 guardian 2020-01-06T08:22:23.000Z The Guardian 18
## 5493 TheSun 2020-01-06T08:22:07.000Z The Sun 1
## 5494 DailyMailUK 2020-01-06T08:21:03.000Z Daily Mail U.K. 5
## 5495 EveningStandard 2020-01-06T08:20:08.000Z Evening Standard 0
## 5496 TheSun 2020-01-06T08:20:00.000Z The Sun 6
## 5497 DailyMirror 2020-01-06T08:16:19.000Z The Mirror 9
## 5498 DailyMirror 2020-01-06T08:16:03.000Z The Mirror 1
## 5499 thetimes 2020-01-06T08:16:02.000Z The Times 4
## 5500 DailyMailUK 2020-01-06T08:13:12.000Z Daily Mail U.K. 36
## 5501 TheSun 2020-01-06T08:13:02.000Z The Sun 4
## 5502 DailyMailUK 2020-01-06T08:11:20.000Z Daily Mail U.K. 8
## 5503 DailyMirror 2020-01-06T08:11:00.000Z The Mirror 0
## 5504 Telegraph 2020-01-06T08:10:07.000Z The Telegraph 6
## 5505 TheSun 2020-01-06T08:10:00.000Z The Sun 6
## 5506 TheSun 2020-01-06T08:09:15.000Z The Sun 4
## 5507 DailyMirror 2020-01-06T08:09:00.000Z The Mirror 0
## 5508 EveningStandard 2020-01-06T08:07:43.000Z Evening Standard 2
## 5509 DailyMirror 2020-01-06T08:07:36.000Z The Mirror 8
## 5510 DailyMirror 2020-01-06T08:05:57.000Z The Mirror 16
## 5511 EveningStandard 2020-01-06T08:03:12.000Z Evening Standard 0
## 5512 TheSun 2020-01-06T08:02:14.000Z The Sun 10
## 5513 guardian 2020-01-06T08:01:16.000Z The Guardian 7
## 5514 MetroUK 2020-01-06T08:00:05.000Z Metro 7
## 5515 TheSun 2020-01-06T08:00:00.000Z The Sun 6
## 5516 TheSun 2020-01-06T07:59:42.000Z The Sun 1
## 5517 DailyMirror 2020-01-06T07:58:00.000Z The Mirror 4
## 5518 Telegraph 2020-01-06T07:57:21.000Z The Telegraph 3
## 5519 DailyMirror 2020-01-06T07:54:09.000Z The Mirror 3
## 5520 DailyMirror 2020-01-06T07:53:46.000Z The Mirror 5
## 5521 EveningStandard 2020-01-06T07:53:24.000Z Evening Standard 1
## 5522 guardian 2020-01-06T07:53:23.000Z The Guardian 7
## 5523 TheSun 2020-01-06T07:52:25.000Z The Sun 1
## 5524 DailyMirror 2020-01-06T07:50:17.000Z The Mirror 5
## 5525 TheSun 2020-01-06T07:50:00.000Z The Sun 14
## 5526 DailyMirror 2020-01-06T07:47:52.000Z The Mirror 6
## 5527 DailyMirror 2020-01-06T07:47:28.000Z The Mirror 5
## 5528 Telegraph 2020-01-06T07:43:35.000Z The Telegraph 3
## 5529 DailyMirror 2020-01-06T07:43:04.000Z The Mirror 3
## 5530 EveningStandard 2020-01-06T07:42:47.000Z Evening Standard 5
## 5531 TheSun 2020-01-06T07:42:33.000Z The Sun 1
## 5532 EveningStandard 2020-01-06T07:40:35.000Z Evening Standard 1
## 5533 TheSun 2020-01-06T07:40:23.000Z The Sun 5
## 5534 MetroUK 2020-01-06T07:40:18.000Z Metro 4
## 5535 TheSun 2020-01-06T07:40:00.000Z The Sun 6
## 5536 guardian 2020-01-06T07:38:39.000Z The Guardian 4
## 5537 guardian 2020-01-06T07:38:39.000Z The Guardian 13
## 5538 DailyMailUK 2020-01-06T07:38:21.000Z Daily Mail U.K. 3
## 5539 guardian 2020-01-06T07:36:39.000Z The Guardian 18
## 5540 TheSun 2020-01-06T07:32:45.000Z The Sun 9
## 5541 DailyMirror 2020-01-06T07:31:36.000Z The Mirror 22
## 5542 Telegraph 2020-01-06T07:30:49.000Z The Telegraph 7
## 5543 EveningStandard 2020-01-06T07:30:46.000Z Evening Standard 1
## 5544 MetroUK 2020-01-06T07:30:07.000Z Metro 3
## 5545 TheSun 2020-01-06T07:30:00.000Z The Sun 11
## 5546 DailyMirror 2020-01-06T07:29:44.000Z The Mirror 0
## 5547 EveningStandard 2020-01-06T07:24:49.000Z Evening Standard 1
## 5548 TheSun 2020-01-06T07:22:52.000Z The Sun 8
## 5549 DailyMirror 2020-01-06T07:21:26.000Z The Mirror 5
## 5550 thetimes 2020-01-06T07:20:58.000Z The Times 11
## 5551 MetroUK 2020-01-06T07:20:55.000Z Metro 2
## 5552 TheSun 2020-01-06T07:20:48.000Z The Sun 4
## 5553 TheSun 2020-01-06T07:20:00.000Z The Sun 6
## 5554 EveningStandard 2020-01-06T07:19:59.000Z Evening Standard 1
## 5555 DailyMirror 2020-01-06T07:19:00.000Z The Mirror 4
## 5556 DailyMirror 2020-01-06T07:18:58.000Z The Mirror 3
## 5557 guardian 2020-01-06T07:16:34.000Z The Guardian 20
## 5558 EveningStandard 2020-01-06T07:14:03.000Z Evening Standard 0
## 5559 EveningStandard 2020-01-06T07:13:44.000Z Evening Standard 1
## 5560 TheSun 2020-01-06T07:13:02.000Z The Sun 5
## 5561 TheSun 2020-01-06T07:10:00.000Z The Sun 5
## 5562 DailyMirror 2020-01-06T07:10:00.000Z The Mirror 1
## 5563 DailyMirror 2020-01-06T07:09:17.000Z The Mirror 0
## 5564 DailyMirror 2020-01-06T07:09:00.000Z The Mirror 0
## 5565 guardian 2020-01-06T07:07:47.000Z The Guardian 50
## 5566 EveningStandard 2020-01-06T07:06:00.000Z Evening Standard 1
## 5567 EveningStandard 2020-01-06T07:05:31.000Z Evening Standard 0
## 5568 DailyMirror 2020-01-06T07:05:00.000Z The Mirror 2
## 5569 TheSun 2020-01-06T07:04:21.000Z The Sun 4
## 5570 TheSun 2020-01-06T07:02:13.000Z The Sun 4
## 5571 guardian 2020-01-06T07:02:13.000Z The Guardian 24
## 5572 Telegraph 2020-01-06T07:00:26.000Z The Telegraph 3
## 5573 EveningStandard 2020-01-06T07:00:19.000Z Evening Standard 0
## 5574 thetimes 2020-01-06T07:00:18.000Z The Times 2
## 5575 MetroUK 2020-01-06T07:00:13.000Z Metro 1
## 5576 TheSun 2020-01-06T07:00:00.000Z The Sun 34
## 5577 guardian 2020-01-06T06:52:36.000Z The Guardian 22
## 5578 EveningStandard 2020-01-06T06:51:24.000Z Evening Standard 0
## 5579 DailyMirror 2020-01-06T06:43:13.000Z The Mirror 1
## 5580 EveningStandard 2020-01-06T06:41:35.000Z Evening Standard 3
## 5581 guardian 2020-01-06T06:40:37.000Z The Guardian 7
## 5582 thetimes 2020-01-06T06:40:36.000Z The Times 11
## 5583 TheSun 2020-01-06T06:40:00.000Z The Sun 641
## 5584 guardian 2020-01-06T06:31:46.000Z The Guardian 9
## 5585 guardian 2020-01-06T06:31:45.000Z The Guardian 3
## 5586 guardian 2020-01-06T06:31:44.000Z The Guardian 4
## 5587 guardian 2020-01-06T06:31:43.000Z The Guardian 7
## 5588 EveningStandard 2020-01-06T06:31:43.000Z Evening Standard 1
## 5589 guardian 2020-01-06T06:31:42.000Z The Guardian 5
## 5590 Telegraph 2020-01-06T06:30:50.000Z The Telegraph 6
## 5591 guardian 2020-01-06T06:30:46.000Z The Guardian 28
## 5592 MetroUK 2020-01-06T06:30:11.000Z Metro 2
## 5593 thetimes 2020-01-06T06:20:57.000Z The Times 7
## 5594 EveningStandard 2020-01-06T06:20:55.000Z Evening Standard 0
## 5595 TheSun 2020-01-06T06:20:00.000Z The Sun 16
## 5596 EveningStandard 2020-01-06T06:10:05.000Z Evening Standard 0
## 5597 DailyMirror 2020-01-06T06:06:38.000Z The Mirror 4
## 5598 Telegraph 2020-01-06T06:00:22.000Z The Telegraph 5
## 5599 thetimes 2020-01-06T06:00:18.000Z The Times 3
## 5600 MetroUK 2020-01-06T06:00:16.000Z Metro 3
## 5601 DailyMirror 2020-01-06T06:00:00.000Z The Mirror 10
## 5602 TheSun 2020-01-06T06:00:00.000Z The Sun 11
## 5603 EveningStandard 2020-01-06T05:59:17.000Z Evening Standard 1
## 5604 EveningStandard 2020-01-06T05:48:27.000Z Evening Standard 2
## 5605 guardian 2020-01-06T05:46:25.000Z The Guardian 12
## 5606 DailyMirror 2020-01-06T05:42:00.000Z The Mirror 2
## 5607 TheSun 2020-01-06T05:40:00.000Z The Sun 4
## 5608 EveningStandard 2020-01-06T05:37:37.000Z Evening Standard 4
## 5609 DailyMirror 2020-01-06T05:35:44.000Z The Mirror 2
## 5610 EveningStandard 2020-01-06T05:26:49.000Z Evening Standard 1
## 5611 TheSun 2020-01-06T05:20:00.000Z The Sun 4
## 5612 EveningStandard 2020-01-06T05:15:58.000Z Evening Standard 1
## 5613 DailyMailUK 2020-01-06T05:08:01.000Z Daily Mail U.K. 35
## 5614 DailyMailUK 2020-01-06T05:07:48.000Z Daily Mail U.K. 6
## 5615 DailyMailUK 2020-01-06T05:07:43.000Z Daily Mail U.K. 2
## 5616 DailyMailUK 2020-01-06T05:07:17.000Z Daily Mail U.K. 4
## 5617 DailyMailUK 2020-01-06T05:07:02.000Z Daily Mail U.K. 48
## 5618 guardian 2020-01-06T05:06:23.000Z The Guardian 1
## 5619 DailyMailUK 2020-01-06T05:05:33.000Z Daily Mail U.K. 82
## 5620 EveningStandard 2020-01-06T05:04:24.000Z Evening Standard 1
## 5621 DailyMirror 2020-01-06T05:00:00.000Z The Mirror 5
## 5622 TheSun 2020-01-06T05:00:00.000Z The Sun 10
## 5623 EveningStandard 2020-01-06T04:51:37.000Z Evening Standard 0
## 5624 DailyMirror 2020-01-06T04:49:04.000Z The Mirror 2
## 5625 TheSun 2020-01-06T04:40:00.000Z The Sun 3
## 5626 EveningStandard 2020-01-06T04:39:49.000Z Evening Standard 1
## 5627 EveningStandard 2020-01-06T04:30:00.000Z Evening Standard 0
## 5628 TheSun 2020-01-06T04:20:00.000Z The Sun 14
## 5629 EveningStandard 2020-01-06T04:19:10.000Z Evening Standard 1
## 5630 DailyMirror 2020-01-06T04:18:00.000Z The Mirror 10
## 5631 guardian 2020-01-06T04:12:07.000Z The Guardian 75
## 5632 EveningStandard 2020-01-06T04:09:19.000Z Evening Standard 0
## 5633 TheSun 2020-01-06T04:00:00.000Z The Sun 12
## 5634 DailyMirror 2020-01-06T04:00:00.000Z The Mirror 14
## 5635 EveningStandard 2020-01-06T03:58:24.000Z Evening Standard 0
## 5636 DailyMailUK 2020-01-06T03:57:29.000Z Daily Mail U.K. 11
## 5637 DailyMirror 2020-01-06T03:53:40.000Z The Mirror 17
## 5638 EveningStandard 2020-01-06T03:47:23.000Z Evening Standard 0
## 5639 DailyMirror 2020-01-06T03:42:00.000Z The Mirror 0
## 5640 DailyMirror 2020-01-06T03:40:33.000Z The Mirror 5
## 5641 TheSun 2020-01-06T03:40:00.000Z The Sun 7
## 5642 EveningStandard 2020-01-06T03:36:34.000Z Evening Standard 0
## 5643 DailyMailUK 2020-01-06T03:31:03.000Z Daily Mail U.K. 11
## 5644 DailyMailUK 2020-01-06T03:30:45.000Z Daily Mail U.K. 9
## 5645 guardian 2020-01-06T03:27:54.000Z The Guardian 15
## 5646 guardian 2020-01-06T03:27:54.000Z The Guardian 6
## 5647 EveningStandard 2020-01-06T03:25:55.000Z Evening Standard 0
## 5648 TheSun 2020-01-06T03:20:00.000Z The Sun 14
## 5649 EveningStandard 2020-01-06T03:15:46.000Z Evening Standard 1
## 5650 DailyMirror 2020-01-06T03:10:00.000Z The Mirror 1
## 5651 DailyMirror 2020-01-06T03:08:00.000Z The Mirror 0
## 5652 EveningStandard 2020-01-06T03:04:57.000Z Evening Standard 1
## 5653 guardian 2020-01-06T03:03:46.000Z The Guardian 107
## 5654 DailyMirror 2020-01-06T03:02:33.000Z The Mirror 8
## 5655 DailyMirror 2020-01-06T03:00:00.000Z The Mirror 8
## 5656 DailyMirror 2020-01-06T02:54:00.000Z The Mirror 2
## 5657 EveningStandard 2020-01-06T02:53:55.000Z Evening Standard 0
## 5658 guardian 2020-01-06T02:49:02.000Z The Guardian 5
## 5659 DailyMailUK 2020-01-06T02:46:30.000Z Daily Mail U.K. 4
## 5660 EveningStandard 2020-01-06T02:43:08.000Z Evening Standard 1
## 5661 DailyMirror 2020-01-06T02:42:00.000Z The Mirror 3
## 5662 TheSun 2020-01-06T02:40:00.000Z The Sun 8
## 5663 EveningStandard 2020-01-06T02:24:25.000Z Evening Standard 0
## 5664 TheSun 2020-01-06T02:20:00.000Z The Sun 31
## 5665 guardian 2020-01-06T02:14:32.000Z The Guardian 39
## 5666 EveningStandard 2020-01-06T02:11:35.000Z Evening Standard 1
## 5667 DailyMirror 2020-01-06T02:05:00.000Z The Mirror 1
## 5668 DailyMirror 2020-01-06T02:03:00.000Z The Mirror 7
## 5669 DailyMirror 2020-01-06T02:00:39.000Z The Mirror 8
## 5670 TheSun 2020-01-06T02:00:00.000Z The Sun 46
## 5671 EveningStandard 2020-01-06T01:59:43.000Z Evening Standard 0
## 5672 DailyMirror 2020-01-06T01:58:00.000Z The Mirror 6
## 5673 guardian 2020-01-06T01:52:57.000Z The Guardian 128
## 5674 EveningStandard 2020-01-06T01:48:50.000Z Evening Standard 1
## 5675 DailyMirror 2020-01-06T01:42:00.000Z The Mirror 0
## 5676 TheSun 2020-01-06T01:40:00.000Z The Sun 12
## 5677 EveningStandard 2020-01-06T01:37:50.000Z Evening Standard 0
## 5678 DailyMailUK 2020-01-06T01:35:50.000Z Daily Mail U.K. 8
## 5679 guardian 2020-01-06T01:30:00.000Z The Guardian 50
## 5680 EveningStandard 2020-01-06T01:25:03.000Z Evening Standard 0
## 5681 TheSun 2020-01-06T01:20:00.000Z The Sun 18
## 5682 DailyMirror 2020-01-06T01:18:00.000Z The Mirror 8
## 5683 Telegraph 2020-01-06T01:15:42.000Z The Telegraph 13
## 5684 EveningStandard 2020-01-06T01:12:16.000Z Evening Standard 1
## 5685 guardian 2020-01-06T01:08:50.000Z The Guardian 37
## 5686 DailyMirror 2020-01-06T01:03:00.000Z The Mirror 10
## 5687 EveningStandard 2020-01-06T01:01:26.000Z Evening Standard 2
## 5688 TheSun 2020-01-06T01:00:00.000Z The Sun 3
## 5689 guardian 2020-01-06T00:53:35.000Z The Guardian 0
## 5690 EveningStandard 2020-01-06T00:50:34.000Z Evening Standard 0
## 5691 DailyMirror 2020-01-06T00:42:22.000Z The Mirror 2
## 5692 EveningStandard 2020-01-06T00:39:46.000Z Evening Standard 4
## 5693 DailyMirror 2020-01-06T00:39:00.000Z The Mirror 1
## 5694 guardian 2020-01-06T00:35:50.000Z The Guardian 7
## 5695 EveningStandard 2020-01-06T00:29:55.000Z Evening Standard 2
## 5696 guardian 2020-01-06T00:29:35.000Z The Guardian 136
## 5697 DailyMirror 2020-01-06T00:28:20.000Z The Mirror 4
## 5698 guardian 2020-01-06T00:24:17.000Z The Guardian 30
## 5699 guardian 2020-01-06T00:24:16.000Z The Guardian 20
## 5700 guardian 2020-01-06T00:24:14.000Z The Guardian 34
## 5701 guardian 2020-01-06T00:24:13.000Z The Guardian 6
## 5702 guardian 2020-01-06T00:24:12.000Z The Guardian 3
## 5703 guardian 2020-01-06T00:24:11.000Z The Guardian 3
## 5704 DailyMirror 2020-01-06T00:22:00.000Z The Mirror 1
## 5705 TheSun 2020-01-06T00:20:00.000Z The Sun 5
## 5706 EveningStandard 2020-01-06T00:19:06.000Z Evening Standard 2
## 5707 DailyMirror 2020-01-06T00:18:00.000Z The Mirror 7
## 5708 DailyMirror 2020-01-06T00:10:51.000Z The Mirror 6
## 5709 DailyMirror 2020-01-06T00:10:00.000Z The Mirror 2
## 5710 DailyMirror 2020-01-06T00:10:00.000Z The Mirror 5
## 5711 EveningStandard 2020-01-06T00:09:16.000Z Evening Standard 1
## 5712 DailyMirror 2020-01-06T00:07:00.000Z The Mirror 6
## 5713 DailyMirror 2020-01-06T00:03:00.000Z The Mirror 11
## 5714 guardian 2020-01-06T00:01:15.000Z The Guardian 29
## 5715 TheSun 2020-01-06T00:00:00.000Z The Sun 10
## 5716 guardian 2020-01-05T23:59:11.000Z The Guardian 2
## 5717 guardian 2020-01-05T23:59:10.000Z The Guardian 4
## 5718 EveningStandard 2020-01-05T23:59:05.000Z Evening Standard 1
## 5719 DailyMirror 2020-01-05T23:59:00.000Z The Mirror 8
## 5720 DailyMirror 2020-01-05T23:58:28.000Z The Mirror 6
## 5721 DailyMirror 2020-01-05T23:57:00.000Z The Mirror 1
## 5722 DailyMirror 2020-01-05T23:54:00.000Z The Mirror 1
## 5723 TheSun 2020-01-05T23:50:00.000Z The Sun 28
## 5724 EveningStandard 2020-01-05T23:49:15.000Z Evening Standard 0
## 5725 DailyMirror 2020-01-05T23:44:00.000Z The Mirror 6
## 5726 guardian 2020-01-05T23:43:20.000Z The Guardian 80
## 5727 DailyMirror 2020-01-05T23:42:59.000Z The Mirror 13
## 5728 EveningStandard 2020-01-05T23:40:23.000Z Evening Standard 2
## 5729 TheSun 2020-01-05T23:40:00.000Z The Sun 12
## 5730 DailyMirror 2020-01-05T23:39:00.000Z The Mirror 2
## 5731 DailyMirror 2020-01-05T23:38:00.000Z The Mirror 6
## 5732 guardian 2020-01-05T23:33:09.000Z The Guardian 4
## 5733 EveningStandard 2020-01-05T23:30:33.000Z Evening Standard 2
## 5734 TheSun 2020-01-05T23:30:00.000Z The Sun 22
## 5735 DailyMailUK 2020-01-05T23:28:10.000Z Daily Mail U.K. 6
## 5736 DailyMirror 2020-01-05T23:25:00.000Z The Mirror 18
## 5737 guardian 2020-01-05T23:22:41.000Z The Guardian 23
## 5738 DailyMirror 2020-01-05T23:21:00.000Z The Mirror 8
## 5739 EveningStandard 2020-01-05T23:20:45.000Z Evening Standard 0
## 5740 TheSun 2020-01-05T23:20:00.000Z The Sun 2
## 5741 EveningStandard 2020-01-05T23:11:54.000Z Evening Standard 1
## 5742 guardian 2020-01-05T23:11:05.000Z The Guardian 4
## 5743 TheSun 2020-01-05T23:10:00.000Z The Sun 14
## 5744 EveningStandard 2020-01-05T23:01:44.000Z Evening Standard 1
## 5745 TheSun 2020-01-05T23:00:00.000Z The Sun 21
## 5746 DailyMailUK 2020-01-05T22:59:43.000Z Daily Mail U.K. 2
## 5747 DailyMirror 2020-01-05T22:58:00.000Z The Mirror 9
## 5748 DailyMirror 2020-01-05T22:56:00.000Z The Mirror 3
## 5749 guardian 2020-01-05T22:53:53.000Z The Guardian 43
## 5750 EveningStandard 2020-01-05T22:53:52.000Z Evening Standard 2
## 5751 TheSun 2020-01-05T22:52:53.000Z The Sun 28
## 5752 DailyMirror 2020-01-05T22:50:14.000Z The Mirror 3
## 5753 TheSun 2020-01-05T22:50:00.000Z The Sun 9
## 5754 guardian 2020-01-05T22:49:56.000Z The Guardian 67
## 5755 DailyMirror 2020-01-05T22:48:40.000Z The Mirror 3
## 5756 DailyMirror 2020-01-05T22:47:06.000Z The Mirror 3
## 5757 EveningStandard 2020-01-05T22:46:59.000Z Evening Standard 2
## 5758 DailyMirror 2020-01-05T22:45:00.000Z The Mirror 7
## 5759 DailyMirror 2020-01-05T22:44:00.000Z The Mirror 11
## 5760 TheSun 2020-01-05T22:43:04.000Z The Sun 3
## 5761 TheSun 2020-01-05T22:42:56.000Z The Sun 8
## 5762 TheSun 2020-01-05T22:40:00.000Z The Sun 5
## 5763 DailyMirror 2020-01-05T22:39:00.000Z The Mirror 0
## 5764 EveningStandard 2020-01-05T22:38:10.000Z Evening Standard 1
## 5765 DailyMirror 2020-01-05T22:37:00.000Z The Mirror 3
## 5766 Telegraph 2020-01-05T22:35:16.000Z The Telegraph 5
## 5767 DailyMirror 2020-01-05T22:32:33.000Z The Mirror 14
## 5768 TheSun 2020-01-05T22:32:12.000Z The Sun 6
## 5769 MetroUK 2020-01-05T22:31:01.000Z Metro 5
## 5770 guardian 2020-01-05T22:30:53.000Z The Guardian 249
## 5771 EveningStandard 2020-01-05T22:30:13.000Z Evening Standard 1
## 5772 TheSun 2020-01-05T22:30:00.000Z The Sun 16
## 5773 DailyMailUK 2020-01-05T22:26:44.000Z Daily Mail U.K. 3
## 5774 guardian 2020-01-05T22:25:19.000Z The Guardian 6
## 5775 DailyMirror 2020-01-05T22:24:00.000Z The Mirror 7
## 5776 Telegraph 2020-01-05T22:23:22.000Z The Telegraph 108
## 5777 EveningStandard 2020-01-05T22:23:20.000Z Evening Standard 3
## 5778 TheSun 2020-01-05T22:22:21.000Z The Sun 1
## 5779 DailyMirror 2020-01-05T22:21:00.000Z The Mirror 3
## 5780 DailyMirror 2020-01-05T22:20:00.000Z The Mirror 8
## 5781 TheSun 2020-01-05T22:20:00.000Z The Sun 73
## 5782 DailyMirror 2020-01-05T22:19:31.000Z The Mirror 3
## 5783 DailyMirror 2020-01-05T22:19:00.000Z The Mirror 1
## 5784 DailyMirror 2020-01-05T22:18:25.000Z The Mirror 2
## 5785 Telegraph 2020-01-05T22:17:53.000Z The Telegraph 53
## 5786 EveningStandard 2020-01-05T22:17:27.000Z Evening Standard 1
## 5787 TheSun 2020-01-05T22:12:32.000Z The Sun 11
## 5788 Telegraph 2020-01-05T22:10:35.000Z The Telegraph 10
## 5789 EveningStandard 2020-01-05T22:10:32.000Z Evening Standard 1
## 5790 TheSun 2020-01-05T22:10:00.000Z The Sun 17
## 5791 guardian 2020-01-05T22:05:41.000Z The Guardian 26
## 5792 DailyMirror 2020-01-05T22:04:40.000Z The Mirror 10
## 5793 EveningStandard 2020-01-05T22:04:38.000Z Evening Standard 0
## 5794 TheSun 2020-01-05T22:02:41.000Z The Sun 2
## 5795 MetroUK 2020-01-05T22:00:08.000Z Metro 0
## 5796 DailyMailUK 2020-01-05T22:00:05.000Z Daily Mail U.K. 10
## 5797 TheSun 2020-01-05T22:00:00.000Z The Sun 6
## 5798 guardian 2020-01-05T22:00:00.000Z The Guardian 28
## 5799 DailyMirror 2020-01-05T21:59:00.000Z The Mirror 27
## 5800 Telegraph 2020-01-05T21:56:57.000Z The Telegraph 34
## 5801 guardian 2020-01-05T21:56:52.000Z The Guardian 23
## 5802 DailyMirror 2020-01-05T21:56:00.000Z The Mirror 3
## 5803 EveningStandard 2020-01-05T21:55:48.000Z Evening Standard 1
## 5804 DailyMirror 2020-01-05T21:54:00.000Z The Mirror 2
## 5805 TheSun 2020-01-05T21:52:51.000Z The Sun 2
## 5806 DailyMirror 2020-01-05T21:52:00.000Z The Mirror 1
## 5807 TheSun 2020-01-05T21:50:00.000Z The Sun 11
## 5808 DailyMirror 2020-01-05T21:49:00.000Z The Mirror 1
## 5809 Telegraph 2020-01-05T21:48:13.000Z The Telegraph 42
## 5810 EveningStandard 2020-01-05T21:46:57.000Z Evening Standard 1
## 5811 guardian 2020-01-05T21:46:57.000Z The Guardian 1
## 5812 Telegraph 2020-01-05T21:46:02.000Z The Telegraph 1
## 5813 DailyMirror 2020-01-05T21:44:46.000Z The Mirror 3
## 5814 TheSun 2020-01-05T21:43:01.000Z The Sun 3
## 5815 DailyMirror 2020-01-05T21:41:27.000Z The Mirror 8
## 5816 TheSun 2020-01-05T21:40:41.000Z The Sun 7
## 5817 DailyMailUK 2020-01-05T21:40:04.000Z Daily Mail U.K. 2
## 5818 TheSun 2020-01-05T21:40:00.000Z The Sun 36
## 5819 EveningStandard 2020-01-05T21:39:06.000Z Evening Standard 0
## 5820 DailyMirror 2020-01-05T21:37:00.000Z The Mirror 4
## 5821 guardian 2020-01-05T21:36:46.000Z The Guardian 5
## 5822 guardian 2020-01-05T21:36:45.000Z The Guardian 22
## 5823 DailyMirror 2020-01-05T21:34:00.000Z The Mirror 5
## 5824 TheSun 2020-01-05T21:32:12.000Z The Sun 3
## 5825 EveningStandard 2020-01-05T21:31:10.000Z Evening Standard 0
## 5826 MetroUK 2020-01-05T21:30:03.000Z Metro 0
## 5827 TheSun 2020-01-05T21:30:00.000Z The Sun 13
## 5828 EveningStandard 2020-01-05T21:24:18.000Z Evening Standard 1
## 5829 TheSun 2020-01-05T21:22:21.000Z The Sun 2
## 5830 DailyMailUK 2020-01-05T21:21:03.000Z Daily Mail U.K. 8
## 5831 Telegraph 2020-01-05T21:20:26.000Z The Telegraph 8
## 5832 guardian 2020-01-05T21:20:23.000Z The Guardian 65
## 5833 TheSun 2020-01-05T21:20:00.000Z The Sun 36
## 5834 DailyMirror 2020-01-05T21:20:00.000Z The Mirror 7
## 5835 EveningStandard 2020-01-05T21:19:24.000Z Evening Standard 1
## 5836 DailyMirror 2020-01-05T21:19:00.000Z The Mirror 3
## 5837 guardian 2020-01-05T21:13:41.000Z The Guardian 9
## 5838 guardian 2020-01-05T21:13:40.000Z The Guardian 4
## 5839 guardian 2020-01-05T21:13:39.000Z The Guardian 41
## 5840 TheSun 2020-01-05T21:12:31.000Z The Sun 1
## 5841 EveningStandard 2020-01-05T21:11:31.000Z Evening Standard 0
## 5842 TheSun 2020-01-05T21:10:00.000Z The Sun 7
## 5843 DailyMirror 2020-01-05T21:10:00.000Z The Mirror 2
## 5844 DailyMirror 2020-01-05T21:07:13.000Z The Mirror 3
## 5845 guardian 2020-01-05T21:03:47.000Z The Guardian 6
## 5846 TheSun 2020-01-05T21:02:40.000Z The Sun 4
## 5847 EveningStandard 2020-01-05T21:02:37.000Z Evening Standard 5
## 5848 DailyMirror 2020-01-05T21:01:00.000Z The Mirror 3
## 5849 Telegraph 2020-01-05T21:00:42.000Z The Telegraph 0
## 5850 MetroUK 2020-01-05T21:00:19.000Z Metro 2
## 5851 MetroUK 2020-01-05T21:00:19.000Z Metro 1
## 5852 DailyMailUK 2020-01-05T21:00:06.000Z Daily Mail U.K. 4
## 5853 TheSun 2020-01-05T21:00:00.000Z The Sun 34
## 5854 DailyMirror 2020-01-05T20:59:00.000Z The Mirror 14
## 5855 EveningStandard 2020-01-05T20:56:33.000Z Evening Standard 0
## 5856 guardian 2020-01-05T20:54:35.000Z The Guardian 7
## 5857 TheSun 2020-01-05T20:52:37.000Z The Sun 3
## 5858 DailyMirror 2020-01-05T20:52:00.000Z The Mirror 3
## 5859 DailyMirror 2020-01-05T20:51:00.000Z The Mirror 3
## 5860 MetroUK 2020-01-06T16:30:11.000Z Metro 4
## 5861 DailyMailUK 2020-01-06T16:30:06.000Z Daily Mail U.K. 6
## 5862 TheSun 2020-01-06T16:30:00.000Z The Sun 3
## 5863 guardian 2020-01-06T16:29:21.000Z The Guardian 15
## 5864 DailyMirror 2020-01-06T16:29:00.000Z The Mirror 0
## 5865 DailyMirror 2020-01-06T16:28:48.000Z The Mirror 1
## 5866 EveningStandard 2020-01-06T16:27:23.000Z Evening Standard 0
## 5867 DailyMirror 2020-01-06T16:26:00.000Z The Mirror 2
## 5868 DailyMirror 2020-01-06T16:24:45.000Z The Mirror 3
## 5869 Telegraph 2020-01-06T16:23:22.000Z The Telegraph 9
## 5870 TheSun 2020-01-06T16:22:27.000Z The Sun 2
## 5871 TheSun 2020-01-06T16:22:13.000Z The Sun 11
## 5872 DailyMirror 2020-01-06T16:22:00.000Z The Mirror 2
## 5873 DailyMirror 2020-01-06T16:20:37.000Z The Mirror 2
## 5874 DailyMirror 2020-01-06T16:20:28.000Z The Mirror 1
## 5875 DailyMailUK 2020-01-06T16:20:07.000Z Daily Mail U.K. 13
## 5876 TheSun 2020-01-06T16:20:00.000Z The Sun 20
## 5877 guardian 2020-01-06T16:19:29.000Z The Guardian 8
## 5878 EveningStandard 2020-01-06T16:19:28.000Z Evening Standard 0
## 5879 DailyMirror 2020-01-06T16:19:00.000Z The Mirror 2
## 5880 DailyMirror 2020-01-06T16:18:00.000Z The Mirror 3
## 5881 guardian 2020-01-06T16:14:15.000Z The Guardian 9
## 5882 guardian 2020-01-06T16:14:14.000Z The Guardian 5
## 5883 guardian 2020-01-06T16:14:12.000Z The Guardian 23
## 5884 guardian 2020-01-06T16:14:11.000Z The Guardian 24
## 5885 EveningStandard 2020-01-06T16:12:37.000Z Evening Standard 0
## 5886 TheSun 2020-01-06T16:12:35.000Z The Sun 0
## 5887 DailyMailUK 2020-01-06T16:11:04.000Z Daily Mail U.K. 3
## 5888 guardian 2020-01-06T16:10:38.000Z The Guardian 40
## 5889 DailyMirror 2020-01-06T16:10:00.000Z The Mirror 2
## 5890 TheSun 2020-01-06T16:10:00.000Z The Sun 5
## 5891 DailyMirror 2020-01-06T16:08:00.000Z The Mirror 0
## 5892 EveningStandard 2020-01-06T16:07:39.000Z Evening Standard 0
## 5893 Telegraph 2020-01-06T16:06:48.000Z The Telegraph 7
## 5894 DailyMirror 2020-01-06T16:05:00.000Z The Mirror 0
## 5895 TheSun 2020-01-06T16:02:24.000Z The Sun 2
## 5896 EveningStandard 2020-01-06T16:01:18.000Z Evening Standard 1
## 5897 guardian 2020-01-06T16:00:39.000Z The Guardian 3
## 5898 MetroUK 2020-01-06T16:00:29.000Z Metro 1
## 5899 DailyMailUK 2020-01-06T15:59:04.000Z Daily Mail U.K. 4
## 5900 DailyMirror 2020-01-06T15:56:35.000Z The Mirror 1
## 5901 DailyMirror 2020-01-06T15:56:00.000Z The Mirror 0
## 5902 EveningStandard 2020-01-06T15:54:34.000Z Evening Standard 1
## 5903 TheSun 2020-01-06T15:52:35.000Z The Sun 0
## 5904 DailyMirror 2020-01-06T15:52:26.000Z The Mirror 2
## 5905 guardian 2020-01-06T15:50:36.000Z The Guardian 18
## 5906 guardian 2020-01-06T15:50:34.000Z The Guardian 57
## 5907 DailyMailUK 2020-01-06T15:50:04.000Z Daily Mail U.K. 0
## 5908 TheSun 2020-01-06T15:50:00.000Z The Sun 15
## 5909 Telegraph 2020-01-06T15:48:31.000Z The Telegraph 2
## 5910 EveningStandard 2020-01-06T15:48:21.000Z Evening Standard 15
## 5911 DailyMirror 2020-01-06T15:44:59.000Z The Mirror 3
## 5912 DailyMirror 2020-01-06T15:43:46.000Z The Mirror 1
## 5913 TheSun 2020-01-06T15:42:35.000Z The Sun 2
## 5914 EveningStandard 2020-01-06T15:42:35.000Z Evening Standard 0
## 5915 MetroUK 2020-01-06T15:41:12.000Z Metro 4
## 5916 DailyMailUK 2020-01-06T15:41:03.000Z Daily Mail U.K. 0
## 5917 guardian 2020-01-06T15:40:38.000Z The Guardian 9
## 5918 DailyMirror 2020-01-06T15:40:00.000Z The Mirror 1
## 5919 TheSun 2020-01-06T15:40:00.000Z The Sun 7
## 5920 DailyMirror 2020-01-06T15:37:00.000Z The Mirror 1
## 5921 DailyMailUK 2020-01-06T15:35:13.000Z Daily Mail U.K. 35
## 5922 DailyMirror 2020-01-06T15:34:43.000Z The Mirror 9
## 5923 Telegraph 2020-01-06T15:33:24.000Z The Telegraph 14
## 5924 EveningStandard 2020-01-06T15:33:20.000Z Evening Standard 0
## 5925 DailyMirror 2020-01-06T15:32:41.000Z The Mirror 4
## 5926 TheSun 2020-01-06T15:32:26.000Z The Sun 4
## 5927 DailyMirror 2020-01-06T15:32:24.000Z The Mirror 1
## 5928 DailyMirror 2020-01-06T15:32:00.000Z The Mirror 1
## 5929 guardian 2020-01-06T15:31:22.000Z The Guardian 5
## 5930 DailyMirror 2020-01-06T15:30:58.000Z The Mirror 1
## 5931 thetimes 2020-01-06T15:30:50.000Z The Times 5
## 5932 DailyMirror 2020-01-06T15:30:26.000Z The Mirror 2
## 5933 MetroUK 2020-01-06T15:30:13.000Z Metro 35
## 5934 DailyMailUK 2020-01-06T15:30:05.000Z Daily Mail U.K. 1
## 5935 TheSun 2020-01-06T15:30:00.000Z The Sun 13
## 5936 DailyMirror 2020-01-06T15:29:48.000Z The Mirror 6
## 5937 TheSun 2020-01-06T15:29:16.000Z The Sun 11
## 5938 DailyMirror 2020-01-06T15:29:00.000Z The Mirror 1
## 5939 DailyMailUK 2020-01-06T15:28:47.000Z Daily Mail U.K. 2
## 5940 EveningStandard 2020-01-06T15:26:35.000Z Evening Standard 1
## 5941 DailyMailUK 2020-01-06T15:25:48.000Z Daily Mail U.K. 6
## 5942 DailyMirror 2020-01-06T15:25:01.000Z The Mirror 5
## 5943 DailyMirror 2020-01-06T15:25:00.000Z The Mirror 1
## 5944 DailyMirror 2020-01-06T15:23:13.000Z The Mirror 3
## 5945 DailyMirror 2020-01-06T15:22:49.000Z The Mirror 2
## 5946 TheSun 2020-01-06T15:22:24.000Z The Sun 2
## 5947 DailyMailUK 2020-01-06T15:20:08.000Z Daily Mail U.K. 19
## 5948 TheSun 2020-01-06T15:20:00.000Z The Sun 75
## 5949 DailyMirror 2020-01-06T15:20:00.000Z The Mirror 1
## 5950 guardian 2020-01-06T15:19:29.000Z The Guardian 16
## 5951 DailyMirror 2020-01-06T15:19:00.000Z The Mirror 3
## 5952 DailyMirror 2020-01-06T15:18:32.000Z The Mirror 12
## 5953 EveningStandard 2020-01-06T15:18:26.000Z Evening Standard 3
## 5954 DailyMirror 2020-01-06T15:17:37.000Z The Mirror 9
## 5955 Telegraph 2020-01-06T15:15:20.000Z The Telegraph 9
## 5956 TheSun 2020-01-06T15:12:18.000Z The Sun 4
## 5957 DailyMirror 2020-01-06T15:11:31.000Z The Mirror 10
## 5958 DailyMailUK 2020-01-06T15:11:02.000Z Daily Mail U.K. 10
## 5959 DailyMirror 2020-01-06T15:11:00.000Z The Mirror 2
## 5960 EveningStandard 2020-01-06T15:10:20.000Z Evening Standard 1
## 5961 TheSun 2020-01-06T15:10:00.000Z The Sun 6
## 5962 DailyMirror 2020-01-06T15:09:46.000Z The Mirror 2
## 5963 DailyMirror 2020-01-06T15:09:00.000Z The Mirror 2
## 5964 MetroUK 2020-01-06T15:07:27.000Z Metro 22
## 5965 guardian 2020-01-06T15:07:20.000Z The Guardian 22
## 5966 DailyMirror 2020-01-06T15:06:00.000Z The Mirror 2
## 5967 DailyMirror 2020-01-06T15:05:19.000Z The Mirror 4
## 5968 DailyMirror 2020-01-06T15:05:00.000Z The Mirror 2
## 5969 DailyMirror 2020-01-06T15:03:26.000Z The Mirror 6
## 5970 TheSun 2020-01-06T15:02:18.000Z The Sun 6
## 5971 guardian 2020-01-06T15:02:10.000Z The Guardian 18
## 5972 guardian 2020-01-06T15:02:09.000Z The Guardian 5
## 5973 guardian 2020-01-06T15:02:09.000Z The Guardian 12
## 5974 guardian 2020-01-06T15:02:08.000Z The Guardian 11
## 5975 MetroUK 2020-01-06T15:01:29.000Z Metro 3
## 5976 MetroUK 2020-01-06T15:00:20.000Z Metro 4
## 5977 EveningStandard 2020-01-06T15:00:11.000Z Evening Standard 0
## 5978 EveningStandard 2020-01-06T15:00:01.000Z Evening Standard 3
## 5979 TheSun 2020-01-06T15:00:00.000Z The Sun 27
## 5980 DailyMirror 2020-01-06T14:59:29.000Z The Mirror 1
## 5981 DailyMirror 2020-01-06T14:58:43.000Z The Mirror 2
## 5982 Telegraph 2020-01-06T14:58:17.000Z The Telegraph 4
## 5983 DailyMailUK 2020-01-06T14:56:52.000Z Daily Mail U.K. 21
## 5984 DailyMirror 2020-01-06T14:56:28.000Z The Mirror 0
## 5985 DailyMirror 2020-01-06T14:56:00.000Z The Mirror 2
## 5986 guardian 2020-01-06T14:55:13.000Z The Guardian 86
## 5987 TheSun 2020-01-06T14:54:58.000Z The Sun 7
## 5988 DailyMailUK 2020-01-06T14:54:34.000Z Daily Mail U.K. 55
## 5989 TheSun 2020-01-06T14:52:17.000Z The Sun 0
## 5990 TheSun 2020-01-06T14:50:53.000Z The Sun 4
## 5991 EveningStandard 2020-01-06T14:50:17.000Z Evening Standard 0
## 5992 DailyMailUK 2020-01-06T14:50:08.000Z Daily Mail U.K. 5
## 5993 TheSun 2020-01-06T14:50:00.000Z The Sun 6
## 5994 DailyMirror 2020-01-06T14:49:00.000Z The Mirror 8
## 5995 DailyMirror 2020-01-06T14:45:00.000Z The Mirror 3
## 5996 guardian 2020-01-06T14:43:32.000Z The Guardian 2
## 5997 Telegraph 2020-01-06T14:43:11.000Z The Telegraph 2
## 5998 DailyMirror 2020-01-06T14:43:10.000Z The Mirror 0
## 5999 TheSun 2020-01-06T14:42:20.000Z The Sun 1
## 6000 EveningStandard 2020-01-06T14:41:31.000Z Evening Standard 1
## 6001 DailyMailUK 2020-01-06T14:41:05.000Z Daily Mail U.K. 2
## 6002 DailyMirror 2020-01-06T14:40:15.000Z The Mirror 0
## 6003 TheSun 2020-01-06T14:40:00.000Z The Sun 44
## 6004 DailyMirror 2020-01-06T14:40:00.000Z The Mirror 0
## 6005 thetimes 2020-01-06T14:39:40.000Z The Times 2
## 6006 DailyMailUK 2020-01-06T14:38:46.000Z Daily Mail U.K. 5
## 6007 MetroUK 2020-01-06T14:37:55.000Z Metro 2
## 6008 TheSun 2020-01-06T14:37:46.000Z The Sun 3
## 6009 guardian 2020-01-06T14:37:25.000Z The Guardian 13
## 6010 guardian 2020-01-06T14:37:24.000Z The Guardian 8
## 6011 DailyMailUK 2020-01-06T14:34:32.000Z Daily Mail U.K. 3
## 6012 TheSun 2020-01-06T14:32:25.000Z The Sun 9
## 6013 EveningStandard 2020-01-06T14:32:25.000Z Evening Standard 1
## 6014 guardian 2020-01-06T14:32:24.000Z The Guardian 4
## 6015 DailyMirror 2020-01-06T14:31:45.000Z The Mirror 6
## 6016 DailyMailUK 2020-01-06T14:31:03.000Z Daily Mail U.K. 1
## 6017 EveningStandard 2020-01-06T14:30:35.000Z Evening Standard 2
## 6018 MetroUK 2020-01-06T14:30:10.000Z Metro 5
## 6019 TheSun 2020-01-06T14:30:00.000Z The Sun 6
## 6020 DailyMirror 2020-01-06T14:29:00.000Z The Mirror 2
## 6021 Telegraph 2020-01-06T14:27:36.000Z The Telegraph 4
## 6022 DailyMirror 2020-01-06T14:25:00.000Z The Mirror 0
## 6023 DailyMirror 2020-01-06T14:22:48.000Z The Mirror 7
## 6024 DailyMirror 2020-01-06T14:22:44.000Z The Mirror 6
## 6025 TheSun 2020-01-06T14:22:36.000Z The Sun 0
## 6026 EveningStandard 2020-01-06T14:22:31.000Z Evening Standard 1
## 6027 TheSun 2020-01-06T14:21:47.000Z The Sun 1
## 6028 EveningStandard 2020-01-06T14:21:37.000Z Evening Standard 0
## 6029 guardian 2020-01-06T14:20:26.000Z The Guardian 74
## 6030 DailyMailUK 2020-01-06T14:19:03.000Z Daily Mail U.K. 3
## 6031 DailyMailUK 2020-01-06T14:17:10.000Z Daily Mail U.K. 12
## 6032 DailyMirror 2020-01-06T14:16:00.000Z The Mirror 2
## 6033 guardian 2020-01-06T14:13:02.000Z The Guardian 2
## 6034 guardian 2020-01-06T14:13:01.000Z The Guardian 9
## 6035 guardian 2020-01-06T14:13:01.000Z The Guardian 6
## 6036 guardian 2020-01-06T14:12:59.000Z The Guardian 14
## 6037 TheSun 2020-01-06T14:12:23.000Z The Sun 2
## 6038 EveningStandard 2020-01-06T14:12:22.000Z Evening Standard 1
## 6039 Telegraph 2020-01-06T14:10:30.000Z The Telegraph 5
## 6040 DailyMailUK 2020-01-06T14:10:05.000Z Daily Mail U.K. 1
## 6041 TheSun 2020-01-06T14:10:00.000Z The Sun 1
## 6042 DailyMirror 2020-01-06T14:09:35.000Z The Mirror 6
## 6043 guardian 2020-01-06T14:07:46.000Z The Guardian 3
## 6044 DailyMirror 2020-01-06T14:06:10.000Z The Mirror 1
## 6045 DailyMirror 2020-01-06T14:06:00.000Z The Mirror 0
## 6046 TheSun 2020-01-06T14:05:46.000Z The Sun 3
## 6047 DailyMirror 2020-01-06T14:05:15.000Z The Mirror 0
## 6048 DailyMirror 2020-01-06T14:05:00.000Z The Mirror 0
## 6049 DailyMirror 2020-01-06T14:04:00.000Z The Mirror 2
## 6050 DailyMirror 2020-01-06T14:04:00.000Z The Mirror 0
## 6051 thetimes 2020-01-06T14:03:38.000Z The Times 5
## 6052 TheSun 2020-01-06T14:02:35.000Z The Sun 5
## 6053 EveningStandard 2020-01-06T14:02:33.000Z Evening Standard 0
## 6054 DailyMirror 2020-01-06T14:02:00.000Z The Mirror 4
## 6055 EveningStandard 2020-01-06T14:00:30.000Z Evening Standard 0
## 6056 EveningStandard 2020-01-06T14:00:27.000Z Evening Standard 0
## 6057 DailyMirror 2020-01-06T14:00:24.000Z The Mirror 0
## 6058 MetroUK 2020-01-06T14:00:08.000Z Metro 1
## 6059 TheSun 2020-01-06T14:00:00.000Z The Sun 10
## 6060 DailyMirror 2020-01-06T13:59:41.000Z The Mirror 0
## 6061 DailyMailUK 2020-01-06T13:59:02.000Z Daily Mail U.K. 2
## 6062 TheSun 2020-01-06T13:58:59.000Z The Sun 2
## 6063 thetimes 2020-01-06T13:58:53.000Z The Times 22
## 6064 thetimes 2020-01-06T13:58:45.000Z The Times 21
## 6065 thetimes 2020-01-06T13:58:34.000Z The Times 363
## 6066 thetimes 2020-01-06T13:58:28.000Z The Times 6
## 6067 guardian 2020-01-06T13:57:46.000Z The Guardian 8
## 6068 Telegraph 2020-01-06T13:53:28.000Z The Telegraph 4
## 6069 EveningStandard 2020-01-06T13:52:21.000Z Evening Standard 17
## 6070 DailyMirror 2020-01-06T13:52:16.000Z The Mirror 3
## 6071 TheSun 2020-01-06T13:52:14.000Z The Sun 1
## 6072 TheSun 2020-01-06T13:50:00.000Z The Sun 6
## 6073 DailyMirror 2020-01-06T13:50:00.000Z The Mirror 3
## 6074 DailyMailUK 2020-01-06T13:49:05.000Z Daily Mail U.K. 2
## 6075 DailyMirror 2020-01-06T13:48:45.000Z The Mirror 1
## 6076 EveningStandard 2020-01-06T13:48:20.000Z Evening Standard 1
## 6077 guardian 2020-01-06T13:47:33.000Z The Guardian 3
## 6078 guardian 2020-01-06T13:47:32.000Z The Guardian 2
## 6079 DailyMirror 2020-01-06T13:45:00.000Z The Mirror 1
## 6080 DailyMirror 2020-01-06T13:43:49.000Z The Mirror 2
## 6081 guardian 2020-01-06T13:43:15.000Z The Guardian 31
## 6082 DailyMirror 2020-01-06T13:43:00.000Z The Mirror 1
## 6083 DailyMirror 2020-01-06T13:42:43.000Z The Mirror 3
## 6084 TheSun 2020-01-06T13:42:16.000Z The Sun 1
## 6085 DailyMailUK 2020-01-06T13:41:05.000Z Daily Mail U.K. 23
## 6086 DailyMirror 2020-01-06T13:40:26.000Z The Mirror 1
## 6087 TheSun 2020-01-06T13:40:00.000Z The Sun 22
## 6088 DailyMirror 2020-01-06T13:40:00.000Z The Mirror 1
## 6089 TheSun 2020-01-06T13:39:52.000Z The Sun 2
## 6090 TheSun 2020-01-06T13:38:30.000Z The Sun 6
## 6091 DailyMirror 2020-01-06T13:36:25.000Z The Mirror 1
## 6092 Telegraph 2020-01-06T13:35:31.000Z The Telegraph 4
## 6093 DailyMirror 2020-01-06T13:35:00.000Z The Mirror 0
## 6094 guardian 2020-01-06T13:34:19.000Z The Guardian 18
## 6095 EveningStandard 2020-01-06T13:34:18.000Z Evening Standard 0
## 6096 DailyMirror 2020-01-06T13:34:09.000Z The Mirror 4
## 6097 thetimes 2020-01-06T13:34:04.000Z The Times 1
## 6098 DailyMailUK 2020-01-06T13:34:01.000Z Daily Mail U.K. 32
## 6099 thetimes 2020-01-06T13:34:00.000Z The Times 5
## 6100 thetimes 2020-01-06T13:33:56.000Z The Times 3
## 6101 DailyMirror 2020-01-06T13:33:44.000Z The Mirror 7
## 6102 DailyMirror 2020-01-06T13:32:54.000Z The Mirror 3
## 6103 TheSun 2020-01-06T13:32:22.000Z The Sun 5
## 6104 thetimes 2020-01-06T13:31:27.000Z The Times 6
## 6105 thetimes 2020-01-06T13:31:20.000Z The Times 16
## 6106 thetimes 2020-01-06T13:31:14.000Z The Times 7
## 6107 DailyMirror 2020-01-06T13:30:44.000Z The Mirror 1
## 6108 DailyMailUK 2020-01-06T13:30:08.000Z Daily Mail U.K. 5
## 6109 MetroUK 2020-01-06T13:30:04.000Z Metro 2
## 6110 TheSun 2020-01-06T13:30:00.000Z The Sun 3
## 6111 DailyMirror 2020-01-06T13:29:00.000Z The Mirror 2
## 6112 guardian 2020-01-06T13:28:42.000Z The Guardian 110
## 6113 DailyMirror 2020-01-06T13:28:00.000Z The Mirror 4
## 6114 DailyMailUK 2020-01-06T13:27:25.000Z Daily Mail U.K. 8
## 6115 DailyMirror 2020-01-06T13:25:18.000Z The Mirror 7
## 6116 DailyMirror 2020-01-06T13:25:11.000Z The Mirror 1
## 6117 guardian 2020-01-06T13:23:36.000Z The Guardian 123
## 6118 guardian 2020-01-06T13:23:35.000Z The Guardian 19
## 6119 DailyMirror 2020-01-06T13:23:09.000Z The Mirror 2
## 6120 thetimes 2020-01-06T13:22:35.000Z The Times 1
## 6121 TheSun 2020-01-06T13:22:34.000Z The Sun 34
## 6122 DailyMailUK 2020-01-06T13:22:03.000Z Daily Mail U.K. 9
## 6123 EveningStandard 2020-01-06T13:20:32.000Z Evening Standard 1
## 6124 TheSun 2020-01-06T13:20:00.000Z The Sun 39
## 6125 DailyMailUK 2020-01-06T13:19:07.000Z Daily Mail U.K. 39
## 6126 DailyMirror 2020-01-06T13:18:48.000Z The Mirror 8
## 6127 TheSun 2020-01-06T13:17:13.000Z The Sun 350
## 6128 Telegraph 2020-01-06T13:16:40.000Z The Telegraph 6
## 6129 DailyMirror 2020-01-06T13:16:39.000Z The Mirror 3
## 6130 DailyMirror 2020-01-06T13:14:57.000Z The Mirror 0
## 6131 guardian 2020-01-06T13:14:55.000Z The Guardian 12
## 6132 TheSun 2020-01-06T13:12:42.000Z The Sun 1
## 6133 DailyMailUK 2020-01-06T13:11:07.000Z Daily Mail U.K. 53
## 6134 DailyMailUK 2020-01-06T13:10:39.000Z Daily Mail U.K. 20
## 6135 TheSun 2020-01-06T13:10:00.000Z The Sun 6
## 6136 DailyMirror 2020-01-06T13:09:39.000Z The Mirror 2
## 6137 EveningStandard 2020-01-06T13:08:43.000Z Evening Standard 1
## 6138 guardian 2020-01-06T13:06:45.000Z The Guardian 16
## 6139 DailyMirror 2020-01-06T13:06:00.000Z The Mirror 0
## 6140 DailyMirror 2020-01-06T13:05:43.000Z The Mirror 0
## 6141 DailyMirror 2020-01-06T13:05:41.000Z The Mirror 2
## 6142 DailyMirror 2020-01-06T13:05:00.000Z The Mirror 1
## 6143 TheSun 2020-01-06T13:02:41.000Z The Sun 9
## 6144 TheSun 2020-01-06T13:02:09.000Z The Sun 2
## 6145 MetroUK 2020-01-06T13:00:03.000Z Metro 8
## 6146 EveningStandard 2020-01-06T13:00:00.000Z Evening Standard 10
## 6147 TheSun 2020-01-06T13:00:00.000Z The Sun 10
## 6148 guardian 2020-01-06T12:59:50.000Z The Guardian 3
## 6149 guardian 2020-01-06T12:59:49.000Z The Guardian 20
## 6150 DailyMailUK 2020-01-06T12:59:08.000Z Daily Mail U.K. 6
## 6151 Telegraph 2020-01-06T12:58:04.000Z The Telegraph 1
## 6152 EveningStandard 2020-01-06T12:57:59.000Z Evening Standard 0
## 6153 DailyMirror 2020-01-06T12:56:17.000Z The Mirror 1
## 6154 guardian 2020-01-06T12:55:02.000Z The Guardian 11
## 6155 guardian 2020-01-06T12:55:00.000Z The Guardian 7
## 6156 TheSun 2020-01-06T12:53:06.000Z The Sun 5
## 6157 DailyMailUK 2020-01-06T12:50:06.000Z Daily Mail U.K. 1
## 6158 EveningStandard 2020-01-06T12:48:49.000Z Evening Standard 29
## 6159 guardian 2020-01-06T12:46:14.000Z The Guardian 16
## 6160 DailyMirror 2020-01-06T12:46:11.000Z The Mirror 9
## 6161 EveningStandard 2020-01-06T12:45:10.000Z Evening Standard 0
## 6162 DailyMirror 2020-01-06T12:45:00.000Z The Mirror 3
## 6163 DailyMirror 2020-01-06T12:44:45.000Z The Mirror 2
## 6164 TheSun 2020-01-06T12:42:44.000Z The Sun 10
## 6165 TheSun 2020-01-06T12:42:15.000Z The Sun 2
## 6166 DailyMirror 2020-01-06T12:42:00.000Z The Mirror 5
## 6167 thetimes 2020-01-06T12:41:15.000Z The Times 17
## 6168 DailyMailUK 2020-01-06T12:41:04.000Z Daily Mail U.K. 9
## 6169 TheSun 2020-01-06T12:40:00.000Z The Sun 26
## 6170 Telegraph 2020-01-06T12:39:24.000Z The Telegraph 2
## 6171 Telegraph 2020-01-06T12:39:15.000Z The Telegraph 3
## 6172 DailyMirror 2020-01-06T12:39:00.000Z The Mirror 1
## 6173 DailyMirror 2020-01-06T12:38:12.000Z The Mirror 7
## 6174 Telegraph 2020-01-06T12:37:41.000Z The Telegraph 9
## 6175 guardian 2020-01-06T12:35:37.000Z The Guardian 237
## 6176 guardian 2020-01-06T12:35:37.000Z The Guardian 3
## 6177 guardian 2020-01-06T12:35:36.000Z The Guardian 2
## 6178 guardian 2020-01-06T12:35:20.000Z The Guardian 59
## 6179 MetroUK 2020-01-06T12:34:31.000Z Metro 10
## 6180 EveningStandard 2020-01-06T12:33:23.000Z Evening Standard 0
## 6181 TheSun 2020-01-06T12:32:22.000Z The Sun 2
## 6182 DailyMailUK 2020-01-06T12:32:04.000Z Daily Mail U.K. 11
## 6183 MetroUK 2020-01-06T12:31:29.000Z Metro 4
## 6184 MetroUK 2020-01-06T12:30:05.000Z Metro 5
## 6185 TheSun 2020-01-06T12:30:00.000Z The Sun 6
## 6186 guardian 2020-01-06T12:30:00.000Z The Guardian 5
## 6187 DailyMirror 2020-01-06T12:29:43.000Z The Mirror 2
## 6188 DailyMirror 2020-01-06T12:29:02.000Z The Mirror 1
## 6189 DailyMirror 2020-01-06T12:28:00.000Z The Mirror 5
## 6190 DailyMirror 2020-01-06T12:28:00.000Z The Mirror 8
## 6191 Telegraph 2020-01-06T12:27:50.000Z The Telegraph 27
## 6192 DailyMirror 2020-01-06T12:27:29.000Z The Mirror 4
## 6193 EveningStandard 2020-01-06T12:25:57.000Z Evening Standard 3
## 6194 guardian 2020-01-06T12:23:53.000Z The Guardian 201
## 6195 TheSun 2020-01-06T12:23:43.000Z The Sun 3
## 6196 DailyMailUK 2020-01-06T12:23:38.000Z Daily Mail U.K. 10
## 6197 Telegraph 2020-01-06T12:23:35.000Z The Telegraph 2
## 6198 TheSun 2020-01-06T12:22:32.000Z The Sun 1
## 6199 DailyMirror 2020-01-06T12:22:05.000Z The Mirror 17
## 6200 EveningStandard 2020-01-06T12:21:33.000Z Evening Standard 0
## 6201 DailyMirror 2020-01-06T12:21:33.000Z The Mirror 7
## 6202 DailyMirror 2020-01-06T12:21:28.000Z The Mirror 4
## 6203 DailyMailUK 2020-01-06T12:20:04.000Z Daily Mail U.K. 3
## 6204 TheSun 2020-01-06T12:20:00.000Z The Sun 13
## 6205 DailyMirror 2020-01-06T12:19:37.000Z The Mirror 1
## 6206 DailyMirror 2020-01-06T12:18:01.000Z The Mirror 6
## 6207 DailyMailUK 2020-01-06T12:13:25.000Z Daily Mail U.K. 33
## 6208 TheSun 2020-01-06T12:13:05.000Z The Sun 8
## 6209 guardian 2020-01-06T12:12:08.000Z The Guardian 15
## 6210 guardian 2020-01-06T12:12:06.000Z The Guardian 3
## 6211 guardian 2020-01-06T12:12:05.000Z The Guardian 30
## 6212 MetroUK 2020-01-06T12:11:00.000Z Metro 2
## 6213 DailyMirror 2020-01-06T12:10:57.000Z The Mirror 4
## 6214 DailyMirror 2020-01-06T12:10:26.000Z The Mirror 4
## 6215 Telegraph 2020-01-06T12:10:15.000Z The Telegraph 3
## 6216 DailyMailUK 2020-01-06T12:10:02.000Z Daily Mail U.K. 2
## 6217 TheSun 2020-01-06T12:10:00.000Z The Sun 5
## 6218 EveningStandard 2020-01-06T12:09:55.000Z Evening Standard 0
## 6219 Telegraph 2020-01-06T12:06:30.000Z The Telegraph 0
## 6220 Telegraph 2020-01-06T12:06:00.000Z The Telegraph 16
## 6221 MetroUK 2020-01-06T12:05:52.000Z Metro 3
## 6222 guardian 2020-01-06T12:05:22.000Z The Guardian 6
## 6223 DailyMirror 2020-01-06T12:05:00.000Z The Mirror 1
## 6224 DailyMirror 2020-01-06T12:04:39.000Z The Mirror 3
## 6225 TheSun 2020-01-06T12:04:27.000Z The Sun 6
## 6226 TheSun 2020-01-06T12:03:01.000Z The Sun 180
## 6227 DailyMirror 2020-01-06T12:02:43.000Z The Mirror 4
## 6228 guardian 2020-01-06T12:01:53.000Z The Guardian 4
## 6229 DailyMirror 2020-01-06T12:01:00.000Z The Mirror 3
## 6230 DailyMirror 2020-01-06T12:00:11.000Z The Mirror 6
## 6231 MetroUK 2020-01-06T12:00:10.000Z Metro 3
## 6232 thetimes 2020-01-06T12:00:04.000Z The Times 0
## 6233 Telegraph 2020-01-06T12:00:01.000Z The Telegraph 7
## 6234 TheSun 2020-01-06T12:00:00.000Z The Sun 8
## 6235 EveningStandard 2020-01-06T11:59:06.000Z Evening Standard 2
## 6236 TheSun 2020-01-06T11:58:32.000Z The Sun 1
## 6237 DailyMirror 2020-01-06T11:58:00.000Z The Mirror 4
## 6238 DailyMailUK 2020-01-06T11:57:30.000Z Daily Mail U.K. 7
## 6239 guardian 2020-01-06T11:57:14.000Z The Guardian 6
## 6240 DailyMirror 2020-01-06T11:55:00.000Z The Mirror 1
## 6241 Telegraph 2020-01-06T11:53:14.000Z The Telegraph 14
## 6242 TheSun 2020-01-06T11:52:12.000Z The Sun 0
## 6243 DailyMailUK 2020-01-06T11:50:08.000Z Daily Mail U.K. 6
## 6244 TheSun 2020-01-06T11:50:00.000Z The Sun 5
## 6245 guardian 2020-01-06T11:48:27.000Z The Guardian 15
## 6246 guardian 2020-01-06T11:48:26.000Z The Guardian 8
## 6247 guardian 2020-01-06T11:48:24.000Z The Guardian 9
## 6248 guardian 2020-01-06T11:48:23.000Z The Guardian 21
## 6249 EveningStandard 2020-01-06T11:47:09.000Z Evening Standard 1
## 6250 DailyMirror 2020-01-06T11:46:24.000Z The Mirror 14
## 6251 DailyMailUK 2020-01-06T11:45:07.000Z Daily Mail U.K. 4
## 6252 DailyMirror 2020-01-06T11:44:59.000Z The Mirror 1
## 6253 guardian 2020-01-06T11:44:16.000Z The Guardian 13
## 6254 DailyMirror 2020-01-06T11:44:00.000Z The Mirror 4
## 6255 TheSun 2020-01-06T11:42:18.000Z The Sun 3
## 6256 TheSun 2020-01-06T11:41:23.000Z The Sun 3
## 6257 DailyMirror 2020-01-06T11:40:54.000Z The Mirror 18
## 6258 Telegraph 2020-01-06T11:40:19.000Z The Telegraph 3
## 6259 DailyMailUK 2020-01-06T11:40:08.000Z Daily Mail U.K. 1
## 6260 TheSun 2020-01-06T11:40:00.000Z The Sun 0
## 6261 DailyMirror 2020-01-06T11:38:24.000Z The Mirror 2
## 6262 DailyMirror 2020-01-06T11:36:06.000Z The Mirror 1
## 6263 DailyMirror 2020-01-06T11:36:00.000Z The Mirror 2
## 6264 EveningStandard 2020-01-06T11:35:22.000Z Evening Standard 0
## 6265 DailyMirror 2020-01-06T11:35:08.000Z The Mirror 5
## 6266 guardian 2020-01-06T11:34:24.000Z The Guardian 23
## 6267 TheSun 2020-01-06T11:32:25.000Z The Sun 0
## 6268 DailyMirror 2020-01-06T11:32:22.000Z The Mirror 6
## 6269 MetroUK 2020-01-06T11:30:53.000Z Metro 7
## 6270 DailyMailUK 2020-01-06T11:30:09.000Z Daily Mail U.K. 0
## 6271 MetroUK 2020-01-06T11:30:08.000Z Metro 1
## 6272 TheSun 2020-01-06T11:30:00.000Z The Sun 45
## 6273 DailyMirror 2020-01-06T11:29:39.000Z The Mirror 4
## 6274 DailyMirror 2020-01-06T11:29:00.000Z The Mirror 1
## 6275 DailyMailUK 2020-01-06T11:28:34.000Z Daily Mail U.K. 36
## 6276 Telegraph 2020-01-06T11:28:29.000Z The Telegraph 2
## 6277 DailyMailUK 2020-01-06T11:27:31.000Z Daily Mail U.K. 12
## 6278 thetimes 2020-01-06T11:24:54.000Z The Times 7
## 6279 guardian 2020-01-06T11:23:54.000Z The Guardian 7
## 6280 EveningStandard 2020-01-06T11:23:32.000Z Evening Standard 3
## 6281 DailyMailUK 2020-01-06T11:23:19.000Z Daily Mail U.K. 10
## 6282 DailyMirror 2020-01-06T11:22:36.000Z The Mirror 1
## 6283 TheSun 2020-01-06T11:22:33.000Z The Sun 2
## 6284 TheSun 2020-01-06T11:22:22.000Z The Sun 2
## 6285 DailyMailUK 2020-01-06T11:21:02.000Z Daily Mail U.K. 2
## 6286 thetimes 2020-01-06T11:20:38.000Z The Times 9
## 6287 DailyMirror 2020-01-06T11:20:00.000Z The Mirror 0
## 6288 TheSun 2020-01-06T11:20:00.000Z The Sun 110
## 6289 DailyMirror 2020-01-06T11:19:49.000Z The Mirror 3
## 6290 DailyMirror 2020-01-06T11:17:52.000Z The Mirror 1
## 6291 DailyMirror 2020-01-06T11:16:38.000Z The Mirror 13
## 6292 guardian 2020-01-06T11:16:38.000Z The Guardian 15
## 6293 Telegraph 2020-01-06T11:15:44.000Z The Telegraph 5
## 6294 TheSun 2020-01-06T11:12:43.000Z The Sun 2
## 6295 EveningStandard 2020-01-06T11:11:47.000Z Evening Standard 1
## 6296 TheSun 2020-01-06T11:10:00.000Z The Sun 42
## 6297 DailyMailUK 2020-01-06T11:09:44.000Z Daily Mail U.K. 6
## 6298 DailyMailUK 2020-01-06T11:09:09.000Z Daily Mail U.K. 5
## 6299 DailyMirror 2020-01-06T11:09:00.000Z The Mirror 1
## 6300 DailyMirror 2020-01-06T11:08:27.000Z The Mirror 6
## 6301 guardian 2020-01-06T11:04:50.000Z The Guardian 51
## 6302 DailyMirror 2020-01-06T11:03:27.000Z The Mirror 23
## 6303 Telegraph 2020-01-06T11:02:56.000Z The Telegraph 18
## 6304 TheSun 2020-01-06T11:02:56.000Z The Sun 5
## 6305 TheSun 2020-01-06T11:02:46.000Z The Sun 3
## 6306 EveningStandard 2020-01-06T11:01:40.000Z Evening Standard 1
## 6307 MetroUK 2020-01-06T11:01:28.000Z Metro 1
## 6308 EveningStandard 2020-01-06T11:01:01.000Z Evening Standard 0
## 6309 MetroUK 2020-01-06T11:00:03.000Z Metro 6
## 6310 TheSun 2020-01-06T11:00:00.000Z The Sun 5
## 6311 DailyMailUK 2020-01-06T10:59:02.000Z Daily Mail U.K. 10
## 6312 guardian 2020-01-06T10:58:00.000Z The Guardian 8
## 6313 EveningStandard 2020-01-06T10:56:24.000Z Evening Standard 2
## 6314 guardian 2020-01-06T10:55:05.000Z The Guardian 29
## 6315 DailyMailUK 2020-01-06T10:55:02.000Z Daily Mail U.K. 53
## 6316 DailyMirror 2020-01-06T10:54:44.000Z The Mirror 4
## 6317 TheSun 2020-01-06T10:53:07.000Z The Sun 6
## 6318 DailyMirror 2020-01-06T10:51:00.000Z The Mirror 3
## 6319 DailyMailUK 2020-01-06T10:50:06.000Z Daily Mail U.K. 10
## 6320 TheSun 2020-01-06T10:50:00.000Z The Sun 4
## 6321 Telegraph 2020-01-06T10:49:58.000Z The Telegraph 64
## 6322 DailyMirror 2020-01-06T10:48:36.000Z The Mirror 3
## 6323 DailyMirror 2020-01-06T10:45:32.000Z The Mirror 1
## 6324 guardian 2020-01-06T10:45:13.000Z The Guardian 42
## 6325 EveningStandard 2020-01-06T10:45:11.000Z Evening Standard 0
## 6326 DailyMirror 2020-01-06T10:45:10.000Z The Mirror 2
## 6327 DailyMirror 2020-01-06T10:44:52.000Z The Mirror 1
## 6328 TheSun 2020-01-06T10:42:11.000Z The Sun 2
## 6329 DailyMailUK 2020-01-06T10:41:02.000Z Daily Mail U.K. 10
## 6330 thetimes 2020-01-06T10:40:20.000Z The Times 2
## 6331 TheSun 2020-01-06T10:40:00.000Z The Sun 5
## 6332 DailyMirror 2020-01-06T10:39:38.000Z The Mirror 4
## 6333 DailyMirror 2020-01-06T10:36:46.000Z The Mirror 10
## 6334 DailyMirror 2020-01-06T10:36:39.000Z The Mirror 17
## 6335 Telegraph 2020-01-06T10:36:18.000Z The Telegraph 18
## 6336 guardian 2020-01-06T10:35:44.000Z The Guardian 27
## 6337 guardian 2020-01-06T10:35:43.000Z The Guardian 7
## 6338 EveningStandard 2020-01-06T10:34:16.000Z Evening Standard 2
## 6339 DailyMirror 2020-01-06T10:34:15.000Z The Mirror 4
## 6340 DailyMailUK 2020-01-06T10:33:38.000Z Daily Mail U.K. 1
## 6341 MetroUK 2020-01-06T10:33:05.000Z Metro 2
## 6342 DailyMailUK 2020-01-06T10:33:02.000Z Daily Mail U.K. 34
## 6343 TheSun 2020-01-06T10:32:19.000Z The Sun 15
## 6344 DailyMailUK 2020-01-06T10:31:06.000Z Daily Mail U.K. 0
## 6345 TheSun 2020-01-06T10:30:11.000Z The Sun 5
## 6346 MetroUK 2020-01-06T10:30:09.000Z Metro 1
## 6347 TheSun 2020-01-06T10:30:00.000Z The Sun 11
## 6348 Telegraph 2020-01-06T10:28:21.000Z The Telegraph 125
## 6349 guardian 2020-01-06T10:27:22.000Z The Guardian 6
## 6350 DailyMirror 2020-01-06T10:26:42.000Z The Mirror 6
## 6351 DailyMirror 2020-01-06T10:25:08.000Z The Mirror 4
## 6352 DailyMirror 2020-01-06T10:24:49.000Z The Mirror 4
## 6353 Telegraph 2020-01-06T10:23:19.000Z The Telegraph 17
## 6354 TheSun 2020-01-06T10:22:19.000Z The Sun 2
## 6355 DailyMirror 2020-01-06T10:22:00.000Z The Mirror 10
## 6356 DailyMirror 2020-01-06T10:21:52.000Z The Mirror 4
## 6357 EveningStandard 2020-01-06T10:20:19.000Z Evening Standard 2
## 6358 DailyMailUK 2020-01-06T10:20:03.000Z Daily Mail U.K. 4
## 6359 TheSun 2020-01-06T10:20:00.000Z The Sun 11
## 6360 guardian 2020-01-06T23:06:30.000Z The Guardian 1
## 6361 DailyMirror 2020-01-06T23:06:00.000Z The Mirror 0
## 6362 EveningStandard 2020-01-06T23:03:38.000Z Evening Standard 3
## 6363 TheSun 2020-01-06T23:02:39.000Z The Sun 0
## 6364 guardian 2020-01-06T23:01:57.000Z The Guardian 12
## 6365 Telegraph 2020-01-06T23:00:54.000Z The Telegraph 1
## 6366 guardian 2020-01-06T23:00:44.000Z The Guardian 1
## 6367 MetroUK 2020-01-06T23:00:19.000Z Metro 5
## 6368 MetroUK 2020-01-06T23:00:19.000Z Metro 2
## 6369 DailyMirror 2020-01-06T23:00:06.000Z The Mirror 2
## 6370 DailyMailUK 2020-01-06T23:00:03.000Z Daily Mail U.K. 0
## 6371 TheSun 2020-01-06T23:00:00.000Z The Sun 12
## 6372 DailyMirror 2020-01-06T23:00:00.000Z The Mirror 1
## 6373 TheSun 2020-01-06T22:58:49.000Z The Sun 4
## 6374 TheSun 2020-01-06T22:57:43.000Z The Sun 1
## 6375 DailyMirror 2020-01-06T22:55:00.000Z The Mirror 3
## 6376 EveningStandard 2020-01-06T22:54:45.000Z Evening Standard 0
## 6377 DailyMirror 2020-01-06T22:53:32.000Z The Mirror 2
## 6378 DailyMirror 2020-01-06T22:53:07.000Z The Mirror 7
## 6379 TheSun 2020-01-06T22:52:49.000Z The Sun 4
## 6380 DailyMirror 2020-01-06T22:51:00.000Z The Mirror 5
## 6381 TheSun 2020-01-06T22:50:00.000Z The Sun 79
## 6382 guardian 2020-01-06T22:49:54.000Z The Guardian 15
## 6383 TheSun 2020-01-06T22:47:53.000Z The Sun 1
## 6384 EveningStandard 2020-01-06T22:47:52.000Z Evening Standard 0
## 6385 DailyMirror 2020-01-06T22:46:07.000Z The Mirror 3
## 6386 Telegraph 2020-01-06T22:46:00.000Z The Telegraph 8
## 6387 DailyMirror 2020-01-06T22:44:00.000Z The Mirror 3
## 6388 guardian 2020-01-06T22:43:26.000Z The Guardian 20
## 6389 TheSun 2020-01-06T22:42:59.000Z The Sun 10
## 6390 guardian 2020-01-06T22:42:37.000Z The Guardian 5
## 6391 DailyMirror 2020-01-06T22:42:00.000Z The Mirror 2
## 6392 DailyMailUK 2020-01-06T22:41:05.000Z Daily Mail U.K. 0
## 6393 TheSun 2020-01-06T22:40:00.000Z The Sun 8
## 6394 EveningStandard 2020-01-06T22:39:53.000Z Evening Standard 2
## 6395 DailyMirror 2020-01-06T22:38:38.000Z The Mirror 16
## 6396 TheSun 2020-01-06T22:37:57.000Z The Sun 1
## 6397 TheSun 2020-01-06T22:37:43.000Z The Sun 8
## 6398 DailyMailUK 2020-01-06T22:36:56.000Z Daily Mail U.K. 3
## 6399 guardian 2020-01-06T22:35:59.000Z The Guardian 0
## 6400 TheSun 2020-01-06T22:33:02.000Z The Sun 5
## 6401 EveningStandard 2020-01-06T22:32:01.000Z Evening Standard 3
## 6402 Telegraph 2020-01-06T22:31:05.000Z The Telegraph 4
## 6403 DailyMirror 2020-01-06T22:31:00.000Z The Mirror 1
## 6404 MetroUK 2020-01-06T22:30:16.000Z Metro 1
## 6405 TheSun 2020-01-06T22:30:00.000Z The Sun 45
## 6406 TheSun 2020-01-06T22:27:07.000Z The Sun 1
## 6407 EveningStandard 2020-01-06T22:24:08.000Z Evening Standard 1
## 6408 guardian 2020-01-06T22:23:51.000Z The Guardian 52
## 6409 DailyMirror 2020-01-06T22:23:48.000Z The Mirror 3
## 6410 DailyMirror 2020-01-06T22:23:45.000Z The Mirror 1
## 6411 DailyMirror 2020-01-06T22:23:38.000Z The Mirror 3
## 6412 DailyMirror 2020-01-06T22:23:33.000Z The Mirror 5
## 6413 TheSun 2020-01-06T22:22:12.000Z The Sun 5
## 6414 DailyMirror 2020-01-06T22:21:18.000Z The Mirror 9
## 6415 TheSun 2020-01-06T22:20:00.000Z The Sun 4
## 6416 DailyMailUK 2020-01-06T22:19:01.000Z Daily Mail U.K. 17
## 6417 Telegraph 2020-01-06T22:17:20.000Z The Telegraph 1
## 6418 TheSun 2020-01-06T22:17:16.000Z The Sun 4
## 6419 DailyMailUK 2020-01-06T22:17:06.000Z Daily Mail U.K. 2
## 6420 guardian 2020-01-06T22:16:39.000Z The Guardian 3
## 6421 guardian 2020-01-06T22:16:37.000Z The Guardian 5
## 6422 EveningStandard 2020-01-06T22:16:37.000Z Evening Standard 0
## 6423 DailyMirror 2020-01-06T22:16:00.000Z The Mirror 3
## 6424 TheSun 2020-01-06T22:15:00.000Z The Sun 6
## 6425 guardian 2020-01-06T22:13:38.000Z The Guardian 92
## 6426 DailyMirror 2020-01-06T22:13:00.000Z The Mirror 4
## 6427 guardian 2020-01-06T22:12:33.000Z The Guardian 22
## 6428 TheSun 2020-01-06T22:12:32.000Z The Sun 1
## 6429 DailyMirror 2020-01-06T22:11:46.000Z The Mirror 1
## 6430 DailyMirror 2020-01-06T22:11:24.000Z The Mirror 5
## 6431 TheSun 2020-01-06T22:10:34.000Z The Sun 2
## 6432 TheSun 2020-01-06T22:10:00.000Z The Sun 5
## 6433 EveningStandard 2020-01-06T22:08:38.000Z Evening Standard 0
## 6434 TheSun 2020-01-06T22:07:36.000Z The Sun 0
## 6435 DailyMirror 2020-01-06T22:06:42.000Z The Mirror 3
## 6436 TheSun 2020-01-06T22:05:38.000Z The Sun 3
## 6437 DailyMirror 2020-01-06T22:05:24.000Z The Mirror 3
## 6438 guardian 2020-01-06T22:04:10.000Z The Guardian 7
## 6439 DailyMirror 2020-01-06T22:03:55.000Z The Mirror 5
## 6440 Telegraph 2020-01-06T22:03:42.000Z The Telegraph 5
## 6441 DailyMirror 2020-01-06T22:03:29.000Z The Mirror 0
## 6442 EveningStandard 2020-01-06T22:02:41.000Z Evening Standard 1
## 6443 DailyMailUK 2020-01-06T22:02:29.000Z Daily Mail U.K. 11
## 6444 guardian 2020-01-06T22:02:18.000Z The Guardian 215
## 6445 guardian 2020-01-06T22:02:10.000Z The Guardian 12
## 6446 TheSun 2020-01-06T22:02:09.000Z The Sun 3
## 6447 TheSun 2020-01-06T22:00:39.000Z The Sun 4
## 6448 MetroUK 2020-01-06T22:00:15.000Z Metro 13
## 6449 DailyMailUK 2020-01-06T22:00:08.000Z Daily Mail U.K. 1
## 6450 TheSun 2020-01-06T22:00:00.000Z The Sun 12
## 6451 EveningStandard 2020-01-06T21:57:57.000Z Evening Standard 0
## 6452 DailyMirror 2020-01-06T21:57:20.000Z The Mirror 13
## 6453 thetimes 2020-01-06T21:57:01.000Z The Times 7
## 6454 Telegraph 2020-01-06T21:56:50.000Z The Telegraph 13
## 6455 DailyMirror 2020-01-06T21:56:48.000Z The Mirror 4
## 6456 DailyMirror 2020-01-06T21:54:00.000Z The Mirror 2
## 6457 TheSun 2020-01-06T21:53:03.000Z The Sun 0
## 6458 DailyMirror 2020-01-06T21:52:48.000Z The Mirror 8
## 6459 guardian 2020-01-06T21:52:29.000Z The Guardian 10
## 6460 guardian 2020-01-06T21:52:28.000Z The Guardian 17
## 6461 DailyMirror 2020-01-06T21:52:00.000Z The Mirror 3
## 6462 EveningStandard 2020-01-06T21:51:05.000Z Evening Standard 1
## 6463 TheSun 2020-01-06T21:50:36.000Z The Sun 7
## 6464 Telegraph 2020-01-06T21:50:13.000Z The Telegraph 9
## 6465 TheSun 2020-01-06T21:50:09.000Z The Sun 0
## 6466 TheSun 2020-01-06T21:50:08.000Z The Sun 2
## 6467 TheSun 2020-01-06T21:50:00.000Z The Sun 6
## 6468 guardian 2020-01-06T21:49:07.000Z The Guardian 7
## 6469 TheSun 2020-01-06T21:48:35.000Z The Sun 15
## 6470 DailyMirror 2020-01-06T21:46:06.000Z The Mirror 3
## 6471 EveningStandard 2020-01-06T21:45:07.000Z Evening Standard 3
## 6472 DailyMirror 2020-01-06T21:43:00.000Z The Mirror 1
## 6473 TheSun 2020-01-06T21:42:10.000Z The Sun 1
## 6474 TheSun 2020-01-06T21:41:13.000Z The Sun 3
## 6475 DailyMailUK 2020-01-06T21:40:10.000Z Daily Mail U.K. 12
## 6476 TheSun 2020-01-06T21:40:00.000Z The Sun 3
## 6477 guardian 2020-01-06T21:38:55.000Z The Guardian 45
## 6478 DailyMirror 2020-01-06T21:38:09.000Z The Mirror 6
## 6479 DailyMirror 2020-01-06T21:38:00.000Z The Mirror 2
## 6480 TheSun 2020-01-06T21:37:55.000Z The Sun 1
## 6481 EveningStandard 2020-01-06T21:35:56.000Z Evening Standard 0
## 6482 TheSun 2020-01-06T21:33:01.000Z The Sun 4
## 6483 TheSun 2020-01-06T21:31:06.000Z The Sun 0
## 6484 EveningStandard 2020-01-06T21:31:01.000Z Evening Standard 1
## 6485 DailyMirror 2020-01-06T21:31:00.000Z The Mirror 3
## 6486 MetroUK 2020-01-06T21:30:11.000Z Metro 0
## 6487 Telegraph 2020-01-06T21:29:09.000Z The Telegraph 18
## 6488 guardian 2020-01-06T21:28:50.000Z The Guardian 24
## 6489 TheSun 2020-01-06T21:28:43.000Z The Sun 4
## 6490 guardian 2020-01-06T21:27:12.000Z The Guardian 43
## 6491 TheSun 2020-01-06T21:27:06.000Z The Sun 2
## 6492 thetimes 2020-01-06T21:26:10.000Z The Times 7
## 6493 DailyMirror 2020-01-06T21:26:00.000Z The Mirror 6
## 6494 guardian 2020-01-06T21:25:13.000Z The Guardian 10
## 6495 DailyMirror 2020-01-06T21:24:31.000Z The Mirror 8
## 6496 EveningStandard 2020-01-06T21:23:31.000Z Evening Standard 2
## 6497 TheSun 2020-01-06T21:22:21.000Z The Sun 8
## 6498 DailyMirror 2020-01-06T21:22:00.000Z The Mirror 1
## 6499 DailyMailUK 2020-01-06T21:21:03.000Z Daily Mail U.K. 5
## 6500 TheSun 2020-01-06T21:20:00.000Z The Sun 14
## 6501 DailyMirror 2020-01-06T21:20:00.000Z The Mirror 0
## 6502 TheSun 2020-01-06T21:17:26.000Z The Sun 4
## 6503 EveningStandard 2020-01-06T21:17:25.000Z Evening Standard 0
## 6504 guardian 2020-01-06T21:16:50.000Z The Guardian 64
## 6505 DailyMirror 2020-01-06T21:15:58.000Z The Mirror 6
## 6506 guardian 2020-01-06T21:15:29.000Z The Guardian 8
## 6507 TheSun 2020-01-06T21:14:43.000Z The Sun 3
## 6508 Telegraph 2020-01-06T21:14:09.000Z The Telegraph 11
## 6509 DailyMirror 2020-01-06T21:14:00.000Z The Mirror 2
## 6510 EveningStandard 2020-01-06T21:13:29.000Z Evening Standard 0
## 6511 DailyMirror 2020-01-06T21:13:00.000Z The Mirror 2
## 6512 TheSun 2020-01-06T21:12:33.000Z The Sun 4
## 6513 TheSun 2020-01-06T21:10:00.000Z The Sun 1
## 6514 EveningStandard 2020-01-06T21:09:38.000Z Evening Standard 0
## 6515 TheSun 2020-01-06T21:07:38.000Z The Sun 3
## 6516 EveningStandard 2020-01-06T21:07:38.000Z Evening Standard 0
## 6517 thetimes 2020-01-06T21:05:39.000Z The Times 13
## 6518 guardian 2020-01-06T21:05:39.000Z The Guardian 14
## 6519 EveningStandard 2020-01-06T21:04:39.000Z Evening Standard 1
## 6520 TheSun 2020-01-06T21:02:42.000Z The Sun 7
## 6521 DailyMirror 2020-01-06T21:02:05.000Z The Mirror 3
## 6522 DailyMirror 2020-01-06T21:01:58.000Z The Mirror 0
## 6523 DailyMirror 2020-01-06T21:01:25.000Z The Mirror 1
## 6524 DailyMirror 2020-01-06T21:01:00.000Z The Mirror 0
## 6525 Telegraph 2020-01-06T21:00:48.000Z The Telegraph 1
## 6526 MetroUK 2020-01-06T21:00:20.000Z Metro 0
## 6527 DailyMailUK 2020-01-06T21:00:11.000Z Daily Mail U.K. 4
## 6528 DailyMirror 2020-01-06T21:00:00.000Z The Mirror 1
## 6529 TheSun 2020-01-06T21:00:00.000Z The Sun 9
## 6530 EveningStandard 2020-01-06T20:59:44.000Z Evening Standard 0
## 6531 TheSun 2020-01-06T20:57:48.000Z The Sun 6
## 6532 guardian 2020-01-06T20:56:12.000Z The Guardian 78
## 6533 TheSun 2020-01-06T20:55:50.000Z The Sun 0
## 6534 EveningStandard 2020-01-06T20:55:47.000Z Evening Standard 0
## 6535 EveningStandard 2020-01-06T20:53:50.000Z Evening Standard 1
## 6536 DailyMirror 2020-01-06T20:53:11.000Z The Mirror 3
## 6537 TheSun 2020-01-06T20:52:51.000Z The Sun 4
## 6538 TheSun 2020-01-06T20:50:00.000Z The Sun 1
## 6539 guardian 2020-01-06T20:49:37.000Z The Guardian 58
## 6540 TheSun 2020-01-06T20:47:57.000Z The Sun 5
## 6541 EveningStandard 2020-01-06T20:47:57.000Z Evening Standard 0
## 6542 guardian 2020-01-06T20:47:08.000Z The Guardian 37
## 6543 guardian 2020-01-06T20:46:13.000Z The Guardian 86
## 6544 DailyMirror 2020-01-06T20:46:00.000Z The Mirror 1
## 6545 DailyMirror 2020-01-06T20:46:00.000Z The Mirror 0
## 6546 TheSun 2020-01-06T20:42:55.000Z The Sun 2
## 6547 DailyMirror 2020-01-06T20:42:00.000Z The Mirror 2
## 6548 DailyMailUK 2020-01-06T20:41:37.000Z Daily Mail U.K. 2
## 6549 guardian 2020-01-06T20:40:58.000Z The Guardian 11
## 6550 EveningStandard 2020-01-06T20:40:57.000Z Evening Standard 0
## 6551 Telegraph 2020-01-06T20:40:01.000Z The Telegraph 7
## 6552 TheSun 2020-01-06T20:40:00.000Z The Sun 6
## 6553 EveningStandard 2020-01-06T20:38:01.000Z Evening Standard 0
## 6554 TheSun 2020-01-06T20:38:01.000Z The Sun 2
## 6555 DailyMirror 2020-01-06T20:38:00.000Z The Mirror 1
## 6556 thetimes 2020-01-06T20:37:02.000Z The Times 4
## 6557 EveningStandard 2020-01-06T20:36:02.000Z Evening Standard 0
## 6558 guardian 2020-01-06T20:35:04.000Z The Guardian 13
## 6559 TheSun 2020-01-06T20:32:06.000Z The Sun 13
## 6560 EveningStandard 2020-01-06T20:32:06.000Z Evening Standard 1
## 6561 DailyMirror 2020-01-06T20:31:00.000Z The Mirror 1
## 6562 TheSun 2020-01-06T20:30:52.000Z The Sun 1
## 6563 MetroUK 2020-01-06T20:30:11.000Z Metro 9
## 6564 TheSun 2020-01-06T20:30:00.000Z The Sun 61
## 6565 guardian 2020-01-06T20:30:00.000Z The Guardian 5
## 6566 DailyMirror 2020-01-06T20:29:45.000Z The Mirror 18
## 6567 Telegraph 2020-01-06T20:29:16.000Z The Telegraph 0
## 6568 TheSun 2020-01-06T20:27:11.000Z The Sun 2
## 6569 DailyMirror 2020-01-06T20:26:37.000Z The Mirror 5
## 6570 DailyMirror 2020-01-06T20:26:00.000Z The Mirror 6
## 6571 guardian 2020-01-06T20:25:13.000Z The Guardian 22
## 6572 EveningStandard 2020-01-06T20:25:13.000Z Evening Standard 1
## 6573 DailyMirror 2020-01-06T20:25:00.000Z The Mirror 2
## 6574 EveningStandard 2020-01-06T20:22:17.000Z Evening Standard 1
## 6575 TheSun 2020-01-06T20:22:16.000Z The Sun 0
## 6576 DailyMailUK 2020-01-06T20:20:08.000Z Daily Mail U.K. 1
## 6577 TheSun 2020-01-06T20:20:00.000Z The Sun 3
## 6578 DailyMirror 2020-01-06T20:20:00.000Z The Mirror 1
## 6579 DailyMirror 2020-01-06T20:20:00.000Z The Mirror 2
## 6580 MetroUK 2020-01-06T20:19:57.000Z Metro 10
## 6581 guardian 2020-01-06T20:16:24.000Z The Guardian 32
## 6582 DailyMirror 2020-01-06T20:16:00.000Z The Mirror 1
## 6583 EveningStandard 2020-01-06T20:15:26.000Z Evening Standard 0
## 6584 thetimes 2020-01-06T20:15:24.000Z The Times 6
## 6585 TheSun 2020-01-06T20:12:26.000Z The Sun 4
## 6586 EveningStandard 2020-01-06T20:12:26.000Z Evening Standard 4
## 6587 TheSun 2020-01-06T20:10:00.000Z The Sun 11
## 6588 Telegraph 2020-01-06T20:09:14.000Z The Telegraph 3
## 6589 EveningStandard 2020-01-06T20:09:10.000Z Evening Standard 2
## 6590 guardian 2020-01-06T20:07:40.000Z The Guardian 22
## 6591 DailyMirror 2020-01-06T20:06:14.000Z The Mirror 1
## 6592 EveningStandard 2020-01-06T20:04:11.000Z Evening Standard 0
## 6593 DailyMirror 2020-01-06T20:03:14.000Z The Mirror 5
## 6594 TheSun 2020-01-06T20:02:14.000Z The Sun 0
## 6595 DailyMailUK 2020-01-06T20:02:05.000Z Daily Mail U.K. 5
## 6596 DailyMirror 2020-01-06T20:01:00.000Z The Mirror 0
## 6597 MetroUK 2020-01-06T20:00:14.000Z Metro 0
## 6598 guardian 2020-01-06T20:00:00.000Z The Guardian 7
## 6599 TheSun 2020-01-06T20:00:00.000Z The Sun 1
## 6600 EveningStandard 2020-01-06T19:57:18.000Z Evening Standard 0
## 6601 DailyMirror 2020-01-06T19:53:19.000Z The Mirror 6
## 6602 DailyMirror 2020-01-06T19:53:00.000Z The Mirror 2
## 6603 TheSun 2020-01-06T19:52:25.000Z The Sun 2
## 6604 EveningStandard 2020-01-06T19:52:24.000Z Evening Standard 2
## 6605 Telegraph 2020-01-06T19:52:23.000Z The Telegraph 88
## 6606 TheSun 2020-01-06T19:50:00.000Z The Sun 31
## 6607 Telegraph 2020-01-06T19:49:31.000Z The Telegraph 7
## 6608 guardian 2020-01-06T19:48:27.000Z The Guardian 19
## 6609 guardian 2020-01-06T19:48:26.000Z The Guardian 13
## 6610 TheSun 2020-01-06T19:47:50.000Z The Sun 4
## 6611 EveningStandard 2020-01-06T19:46:30.000Z Evening Standard 0
## 6612 TheSun 2020-01-06T19:42:35.000Z The Sun 2
## 6613 EveningStandard 2020-01-06T19:40:35.000Z Evening Standard 0
## 6614 DailyMailUK 2020-01-06T19:40:04.000Z Daily Mail U.K. 4
## 6615 TheSun 2020-01-06T19:40:00.000Z The Sun 2
## 6616 guardian 2020-01-06T19:38:39.000Z The Guardian 27
## 6617 DailyMirror 2020-01-06T19:38:00.000Z The Mirror 6
## 6618 TheSun 2020-01-06T19:37:39.000Z The Sun 3
## 6619 DailyMirror 2020-01-06T19:37:16.000Z The Mirror 2
## 6620 TheSun 2020-01-06T19:37:03.000Z The Sun 3
## 6621 thetimes 2020-01-06T19:35:42.000Z The Times 8
## 6622 DailyMirror 2020-01-06T19:34:41.000Z The Mirror 3
## 6623 TheSun 2020-01-06T19:32:43.000Z The Sun 1
## 6624 EveningStandard 2020-01-06T19:32:43.000Z Evening Standard 0
## 6625 EveningStandard 2020-01-06T19:30:53.000Z Evening Standard 0
## 6626 DailyMirror 2020-01-06T19:30:23.000Z The Mirror 0
## 6627 MetroUK 2020-01-06T19:30:19.000Z Metro 2
## 6628 TheSun 2020-01-06T19:30:00.000Z The Sun 2
## 6629 DailyMirror 2020-01-06T19:30:00.000Z The Mirror 0
## 6630 TheSun 2020-01-06T19:27:54.000Z The Sun 4
## 6631 guardian 2020-01-06T19:26:58.000Z The Guardian 1
## 6632 EveningStandard 2020-01-06T19:26:56.000Z Evening Standard 2
## 6633 DailyMirror 2020-01-06T19:26:00.000Z The Mirror 2
## 6634 DailyMirror 2020-01-06T19:24:00.000Z The Mirror 3
## 6635 guardian 2020-01-06T19:23:48.000Z The Guardian 3
## 6636 TheSun 2020-01-06T19:22:59.000Z The Sun 0
## 6637 EveningStandard 2020-01-06T19:22:59.000Z Evening Standard 0
## 6638 DailyMailUK 2020-01-06T19:20:06.000Z Daily Mail U.K. 3
## 6639 DailyMirror 2020-01-06T19:20:00.000Z The Mirror 0
## 6640 TheSun 2020-01-06T19:20:00.000Z The Sun 4
## 6641 MetroUK 2020-01-06T19:19:56.000Z Metro 5
## 6642 DailyMirror 2020-01-06T19:19:32.000Z The Mirror 1
## 6643 TheSun 2020-01-06T19:18:07.000Z The Sun 0
## 6644 EveningStandard 2020-01-06T19:18:02.000Z Evening Standard 1
## 6645 guardian 2020-01-06T19:15:10.000Z The Guardian 20
## 6646 Telegraph 2020-01-06T19:14:10.000Z The Telegraph 4
## 6647 EveningStandard 2020-01-06T19:13:06.000Z Evening Standard 0
## 6648 DailyMirror 2020-01-06T19:12:12.000Z The Mirror 0
## 6649 TheSun 2020-01-06T19:12:08.000Z The Sun 1
## 6650 EveningStandard 2020-01-06T19:11:10.000Z Evening Standard 0
## 6651 guardian 2020-01-06T19:10:10.000Z The Guardian 35
## 6652 TheSun 2020-01-06T19:10:00.000Z The Sun 28
## 6653 EveningStandard 2020-01-06T19:08:11.000Z Evening Standard 4
## 6654 DailyMirror 2020-01-06T19:06:40.000Z The Mirror 64
## 6655 TheSun 2020-01-06T19:05:21.000Z The Sun 9
## 6656 thetimes 2020-01-06T19:05:17.000Z The Times 12
## 6657 EveningStandard 2020-01-06T19:05:15.000Z Evening Standard 4
## 6658 DailyMirror 2020-01-06T19:02:56.000Z The Mirror 4
## 6659 TheSun 2020-01-06T19:02:39.000Z The Sun 6
## 6660 TheSun 2020-01-06T19:00:35.000Z The Sun 5
## 6661 guardian 2020-01-06T19:00:23.000Z The Guardian 6
## 6662 EveningStandard 2020-01-06T19:00:23.000Z Evening Standard 0
## 6663 guardian 2020-01-06T19:00:23.000Z The Guardian 4
## 6664 MetroUK 2020-01-06T19:00:17.000Z Metro 3
## 6665 DailyMailUK 2020-01-06T19:00:06.000Z Daily Mail U.K. 2
## 6666 TheSun 2020-01-06T19:00:00.000Z The Sun 2
## 6667 DailyMirror 2020-01-06T19:00:00.000Z The Mirror 0
## 6668 EveningStandard 2020-01-06T18:58:18.000Z Evening Standard 0
## 6669 TheSun 2020-01-06T18:57:21.000Z The Sun 0
## 6670 EveningStandard 2020-01-06T18:56:21.000Z Evening Standard 3
## 6671 DailyMirror 2020-01-06T18:53:06.000Z The Mirror 1
## 6672 TheSun 2020-01-06T18:52:26.000Z The Sun 9
## 6673 guardian 2020-01-06T18:51:30.000Z The Guardian 3
## 6674 EveningStandard 2020-01-06T18:51:26.000Z Evening Standard 2
## 6675 thetimes 2020-01-06T18:49:30.000Z The Times 7
## 6676 EveningStandard 2020-01-06T18:49:28.000Z Evening Standard 3
## 6677 TheSun 2020-01-06T18:47:19.000Z The Sun 0
## 6678 EveningStandard 2020-01-06T18:47:19.000Z Evening Standard 0
## 6679 EveningStandard 2020-01-06T18:43:23.000Z Evening Standard 2
## 6680 MetroUK 2020-01-06T18:43:12.000Z Metro 3
## 6681 TheSun 2020-01-06T18:42:25.000Z The Sun 11
## 6682 DailyMirror 2020-01-06T18:42:00.000Z The Mirror 2
## 6683 guardian 2020-01-06T18:40:30.000Z The Guardian 35
## 6684 DailyMailUK 2020-01-06T18:40:05.000Z Daily Mail U.K. 1
## 6685 TheSun 2020-01-06T18:40:00.000Z The Sun 12
## 6686 EveningStandard 2020-01-06T18:39:29.000Z Evening Standard 0
## 6687 DailyMirror 2020-01-06T18:38:58.000Z The Mirror 5
## 6688 DailyMirror 2020-01-06T18:38:00.000Z The Mirror 0
## 6689 TheSun 2020-01-06T18:37:29.000Z The Sun 4
## 6690 EveningStandard 2020-01-06T18:36:30.000Z Evening Standard 1
## 6691 EveningStandard 2020-01-06T18:35:32.000Z Evening Standard 0
## 6692 TheSun 2020-01-06T18:33:47.000Z The Sun 5
## 6693 thetimes 2020-01-06T18:33:34.000Z The Times 1
## 6694 EveningStandard 2020-01-06T18:32:35.000Z Evening Standard 4
## 6695 TheSun 2020-01-06T18:32:35.000Z The Sun 4
## 6696 Telegraph 2020-01-06T18:31:37.000Z The Telegraph 1
## 6697 guardian 2020-01-06T18:30:39.000Z The Guardian 5
## 6698 EveningStandard 2020-01-06T18:30:31.000Z Evening Standard 1
## 6699 MetroUK 2020-01-06T18:30:14.000Z Metro 1
## 6700 DailyMirror 2020-01-06T18:30:00.000Z The Mirror 1
## 6701 TheSun 2020-01-06T18:30:00.000Z The Sun 107
## 6702 EveningStandard 2020-01-06T18:28:36.000Z Evening Standard 1
## 6703 EveningStandard 2020-01-06T18:26:37.000Z Evening Standard 1
## 6704 DailyMirror 2020-01-06T18:26:00.000Z The Mirror 1
## 6705 DailyMirror 2020-01-06T18:26:00.000Z The Mirror 0
## 6706 DailyMirror 2020-01-06T18:24:00.000Z The Mirror 4
## 6707 TheSun 2020-01-06T18:22:42.000Z The Sun 7
## 6708 EveningStandard 2020-01-06T18:22:42.000Z Evening Standard 0
## 6709 EveningStandard 2020-01-06T18:20:57.000Z Evening Standard 0
## 6710 DailyMailUK 2020-01-06T18:20:06.000Z Daily Mail U.K. 4
## 6711 DailyMirror 2020-01-06T18:20:00.000Z The Mirror 1
## 6712 TheSun 2020-01-06T18:20:00.000Z The Sun 12
## 6713 guardian 2020-01-06T18:19:45.000Z The Guardian 6
## 6714 thetimes 2020-01-06T18:17:47.000Z The Times 1
## 6715 EveningStandard 2020-01-06T18:17:46.000Z Evening Standard 0
## 6716 DailyMirror 2020-01-06T18:17:41.000Z The Mirror 7
## 6717 DailyMirror 2020-01-06T18:16:00.000Z The Mirror 2
## 6718 EveningStandard 2020-01-06T18:14:48.000Z Evening Standard 1
## 6719 Telegraph 2020-01-06T18:13:54.000Z The Telegraph 23
## 6720 TheSun 2020-01-06T18:12:51.000Z The Sun 16
## 6721 guardian 2020-01-06T18:12:38.000Z The Guardian 5
## 6722 guardian 2020-01-06T18:12:38.000Z The Guardian 2
## 6723 guardian 2020-01-06T18:12:37.000Z The Guardian 15
## 6724 guardian 2020-01-06T18:12:36.000Z The Guardian 8
## 6725 guardian 2020-01-06T18:12:36.000Z The Guardian 95
## 6726 guardian 2020-01-06T18:12:34.000Z The Guardian 13
## 6727 EveningStandard 2020-01-06T18:11:53.000Z Evening Standard 1
## 6728 DailyMirror 2020-01-06T18:11:39.000Z The Mirror 8
## 6729 EveningStandard 2020-01-06T18:10:32.000Z Evening Standard 3
## 6730 TheSun 2020-01-06T18:10:00.000Z The Sun 11
## 6731 DailyMailUK 2020-01-06T18:09:07.000Z Daily Mail U.K. 16
## 6732 DailyMirror 2020-01-06T18:09:00.000Z The Mirror 1
## 6733 guardian 2020-01-06T18:08:37.000Z The Guardian 61
## 6734 EveningStandard 2020-01-06T18:08:36.000Z Evening Standard 0
## 6735 EveningStandard 2020-01-06T18:05:21.000Z Evening Standard 5
## 6736 DailyMirror 2020-01-06T18:03:47.000Z The Mirror 8
## 6737 EveningStandard 2020-01-06T18:03:21.000Z Evening Standard 0
## 6738 TheSun 2020-01-06T18:02:13.000Z The Sun 22
## 6739 EveningStandard 2020-01-06T18:01:14.000Z Evening Standard 1
## 6740 EveningStandard 2020-01-06T18:00:24.000Z Evening Standard 0
## 6741 DailyMirror 2020-01-06T18:00:18.000Z The Mirror 0
## 6742 MetroUK 2020-01-06T18:00:18.000Z Metro 18
## 6743 DailyMailUK 2020-01-06T18:00:06.000Z Daily Mail U.K. 1
## 6744 TheSun 2020-01-06T18:00:01.000Z The Sun 1
## 6745 EveningStandard 2020-01-06T17:59:14.000Z Evening Standard 1
## 6746 guardian 2020-01-06T17:58:15.000Z The Guardian 10
## 6747 EveningStandard 2020-01-06T17:57:16.000Z Evening Standard 1
## 6748 DailyMirror 2020-01-06T17:57:00.000Z The Mirror 3
## 6749 Telegraph 2020-01-06T17:55:47.000Z The Telegraph 3
## 6750 thetimes 2020-01-06T17:55:20.000Z The Times 2
## 6751 EveningStandard 2020-01-06T17:55:19.000Z Evening Standard 0
## 6752 EveningStandard 2020-01-06T17:53:22.000Z Evening Standard 1
## 6753 TheSun 2020-01-06T17:52:24.000Z The Sun 9
## 6754 DailyMirror 2020-01-06T17:52:00.000Z The Mirror 4
## 6755 EveningStandard 2020-01-06T17:50:24.000Z Evening Standard 0
## 6756 DailyMirror 2020-01-06T17:50:22.000Z The Mirror 3
## 6757 TheSun 2020-01-06T17:50:00.000Z The Sun 28
## 6758 TheSun 2020-01-06T17:49:10.000Z The Sun 19
## 6759 guardian 2020-01-06T17:48:51.000Z The Guardian 20
## 6760 guardian 2020-01-06T17:48:49.000Z The Guardian 4
## 6761 Telegraph 2020-01-06T17:47:56.000Z The Telegraph 0
## 6762 EveningStandard 2020-01-06T17:47:26.000Z Evening Standard 0
## 6763 EveningStandard 2020-01-06T17:46:46.000Z Evening Standard 2
## 6764 TheSun 2020-01-06T17:46:26.000Z The Sun 5
## 6765 EveningStandard 2020-01-06T17:44:29.000Z Evening Standard 0
## 6766 guardian 2020-01-06T17:42:31.000Z The Guardian 33
## 6767 TheSun 2020-01-06T17:42:31.000Z The Sun 3
## 6768 DailyMirror 2020-01-06T17:41:45.000Z The Mirror 7
## 6769 Telegraph 2020-01-06T17:40:31.000Z The Telegraph 295
## 6770 EveningStandard 2020-01-06T17:40:30.000Z Evening Standard 0
## 6771 DailyMailUK 2020-01-06T17:40:07.000Z Daily Mail U.K. 2
## 6772 TheSun 2020-01-06T17:40:00.000Z The Sun 6
## 6773 DailyMirror 2020-01-06T17:38:56.000Z The Mirror 7
## 6774 EveningStandard 2020-01-06T17:37:29.000Z Evening Standard 0
## 6775 DailyMirror 2020-01-06T17:37:00.000Z The Mirror 2
## 6776 thetimes 2020-01-06T17:36:31.000Z The Times 4
## 6777 Telegraph 2020-01-06T17:35:35.000Z The Telegraph 12
## 6778 DailyMirror 2020-01-06T17:35:03.000Z The Mirror 3
## 6779 EveningStandard 2020-01-06T17:33:32.000Z Evening Standard 1
## 6780 EveningStandard 2020-01-06T17:33:28.000Z Evening Standard 5
## 6781 TheSun 2020-01-06T17:32:34.000Z The Sun 7
## 6782 guardian 2020-01-06T17:32:34.000Z The Guardian 5
## 6783 MetroUK 2020-01-06T17:32:02.000Z Metro 4
## 6784 EveningStandard 2020-01-06T17:30:46.000Z Evening Standard 1
## 6785 MetroUK 2020-01-06T17:30:11.000Z Metro 1
## 6786 DailyMailUK 2020-01-06T17:30:05.000Z Daily Mail U.K. 8
## 6787 TheSun 2020-01-06T17:30:00.000Z The Sun 11
## 6788 DailyMirror 2020-01-06T17:30:00.000Z The Mirror 2
## 6789 DailyMirror 2020-01-06T17:26:00.000Z The Mirror 1
## 6790 EveningStandard 2020-01-06T17:25:44.000Z Evening Standard 1
## 6791 DailyMirror 2020-01-06T17:25:22.000Z The Mirror 4
## 6792 DailyMirror 2020-01-06T17:25:00.000Z The Mirror 3
## 6793 MetroUK 2020-01-06T17:24:00.000Z Metro 2
## 6794 DailyMirror 2020-01-06T17:23:03.000Z The Mirror 12
## 6795 guardian 2020-01-06T17:22:53.000Z The Guardian 9
## 6796 TheSun 2020-01-06T17:22:45.000Z The Sun 4
## 6797 Telegraph 2020-01-06T17:22:17.000Z The Telegraph 5
## 6798 guardian 2020-01-06T17:21:46.000Z The Guardian 31
## 6799 DailyMailUK 2020-01-06T17:20:06.000Z Daily Mail U.K. 1
## 6800 TheSun 2020-01-06T17:20:00.000Z The Sun 4
## 6801 DailyMirror 2020-01-06T17:19:00.000Z The Mirror 0
## 6802 DailyMirror 2020-01-06T17:18:57.000Z The Mirror 7
## 6803 DailyMirror 2020-01-06T17:17:43.000Z The Mirror 6
## 6804 DailyMirror 2020-01-06T17:17:42.000Z The Mirror 5
## 6805 DailyMirror 2020-01-06T17:17:00.000Z The Mirror 0
## 6806 EveningStandard 2020-01-06T17:16:50.000Z Evening Standard 1
## 6807 DailyMirror 2020-01-06T17:16:30.000Z The Mirror 13
## 6808 thetimes 2020-01-06T17:16:17.000Z The Times 1
## 6809 DailyMirror 2020-01-06T17:15:35.000Z The Mirror 2
## 6810 DailyMirror 2020-01-06T17:15:21.000Z The Mirror 2
## 6811 guardian 2020-01-06T17:15:00.000Z The Guardian 2
## 6812 DailyMirror 2020-01-06T17:14:07.000Z The Mirror 84
## 6813 TheSun 2020-01-06T17:12:53.000Z The Sun 4
## 6814 thetimes 2020-01-06T17:12:47.000Z The Times 0
## 6815 guardian 2020-01-06T17:11:27.000Z The Guardian 15
## 6816 TheSun 2020-01-06T17:10:56.000Z The Sun 1
## 6817 DailyMailUK 2020-01-06T17:10:06.000Z Daily Mail U.K. 2
## 6818 TheSun 2020-01-06T17:10:00.000Z The Sun 3
## 6819 EveningStandard 2020-01-06T17:09:12.000Z Evening Standard 3
## 6820 DailyMirror 2020-01-06T17:07:00.000Z The Mirror 0
## 6821 DailyMirror 2020-01-06T17:05:16.000Z The Mirror 2
## 6822 DailyMirror 2020-01-06T17:05:00.000Z The Mirror 1
## 6823 DailyMirror 2020-01-06T17:04:32.000Z The Mirror 2
## 6824 TheSun 2020-01-06T17:02:37.000Z The Sun 11
## 6825 guardian 2020-01-06T17:02:20.000Z The Guardian 1
## 6826 guardian 2020-01-06T17:02:18.000Z The Guardian 13
## 6827 Telegraph 2020-01-06T17:00:30.000Z The Telegraph 5
## 6828 EveningStandard 2020-01-06T17:00:26.000Z Evening Standard 1
## 6829 MetroUK 2020-01-06T17:00:16.000Z Metro 3
## 6830 DailyMirror 2020-01-06T17:00:00.000Z The Mirror 0
## 6831 TheSun 2020-01-06T17:00:00.000Z The Sun 6
## 6832 guardian 2020-01-06T16:59:27.000Z The Guardian 425
## 6833 DailyMailUK 2020-01-06T16:59:05.000Z Daily Mail U.K. 5
## 6834 DailyMirror 2020-01-06T16:58:33.000Z The Mirror 12
## 6835 DailyMirror 2020-01-06T16:57:00.000Z The Mirror 6
## 6836 TheSun 2020-01-06T16:52:36.000Z The Sun 2
## 6837 EveningStandard 2020-01-06T16:51:19.000Z Evening Standard 1
## 6838 DailyMailUK 2020-01-06T16:51:02.000Z Daily Mail U.K. 7
## 6839 guardian 2020-01-06T16:50:14.000Z The Guardian 33
## 6840 TheSun 2020-01-06T16:50:00.000Z The Sun 10
## 6841 DailyMirror 2020-01-06T16:50:00.000Z The Mirror 2
## 6842 DailyMailUK 2020-01-06T16:46:51.000Z Daily Mail U.K. 3
## 6843 DailyMirror 2020-01-06T16:44:34.000Z The Mirror 2
## 6844 EveningStandard 2020-01-06T16:44:17.000Z Evening Standard 1
## 6845 DailyMirror 2020-01-06T16:43:00.000Z The Mirror 3
## 6846 Telegraph 2020-01-06T16:42:24.000Z The Telegraph 8
## 6847 TheSun 2020-01-06T16:42:21.000Z The Sun 0
## 6848 guardian 2020-01-06T16:40:57.000Z The Guardian 9
## 6849 guardian 2020-01-06T16:40:56.000Z The Guardian 4
## 6850 guardian 2020-01-06T16:40:54.000Z The Guardian 1
## 6851 guardian 2020-01-06T16:40:53.000Z The Guardian 54
## 6852 DailyMailUK 2020-01-06T16:40:12.000Z Daily Mail U.K. 3
## 6853 TheSun 2020-01-06T16:40:00.000Z The Sun 15
## 6854 guardian 2020-01-06T16:39:22.000Z The Guardian 8
## 6855 EveningStandard 2020-01-06T16:36:25.000Z Evening Standard 0
## 6856 thetimes 2020-01-06T16:32:45.000Z The Times 8
## 6857 TheSun 2020-01-06T16:32:32.000Z The Sun 1
## 6858 DailyMirror 2020-01-06T16:32:28.000Z The Mirror 12
## 6859 TheSun 2020-01-06T16:30:38.000Z The Sun 1
## 6860 DailyMirror 2020-01-07T11:13:06.000Z The Mirror 10
## 6861 TheSun 2020-01-07T11:12:51.000Z The Sun 3
## 6862 DailyMailUK 2020-01-07T11:11:20.000Z Daily Mail U.K. 8
## 6863 DailyMailUK 2020-01-07T11:11:05.000Z Daily Mail U.K. 0
## 6864 guardian 2020-01-07T11:10:53.000Z The Guardian 23
## 6865 EveningStandard 2020-01-07T11:10:53.000Z Evening Standard 0
## 6866 TheSun 2020-01-07T11:10:00.000Z The Sun 22
## 6867 DailyMirror 2020-01-07T11:06:32.000Z The Mirror 9
## 6868 DailyMailUK 2020-01-07T11:05:41.000Z Daily Mail U.K. 13
## 6869 thetimes 2020-01-07T11:05:00.000Z The Times 7
## 6870 DailyMirror 2020-01-07T11:04:10.000Z The Mirror 1
## 6871 TheSun 2020-01-07T11:03:04.000Z The Sun 2
## 6872 DailyMirror 2020-01-07T11:02:49.000Z The Mirror 1
## 6873 guardian 2020-01-07T11:01:15.000Z The Guardian 12
## 6874 DailyMirror 2020-01-07T11:00:10.000Z The Mirror 3
## 6875 MetroUK 2020-01-07T11:00:09.000Z Metro 5
## 6876 DailyMailUK 2020-01-07T11:00:07.000Z Daily Mail U.K. 2
## 6877 EveningStandard 2020-01-07T11:00:00.000Z Evening Standard 2
## 6878 TheSun 2020-01-07T11:00:00.000Z The Sun 13
## 6879 TheSun 2020-01-07T10:58:47.000Z The Sun 8
## 6880 DailyMirror 2020-01-07T10:58:05.000Z The Mirror 1
## 6881 TheSun 2020-01-07T10:57:44.000Z The Sun 4
## 6882 guardian 2020-01-07T10:56:00.000Z The Guardian 43
## 6883 Telegraph 2020-01-07T10:55:09.000Z The Telegraph 17
## 6884 MetroUK 2020-01-07T10:53:26.000Z Metro 3
## 6885 TheSun 2020-01-07T10:52:50.000Z The Sun 0
## 6886 EveningStandard 2020-01-07T10:52:49.000Z Evening Standard 0
## 6887 DailyMirror 2020-01-07T10:51:34.000Z The Mirror 7
## 6888 DailyMirror 2020-01-07T10:51:00.000Z The Mirror 7
## 6889 TheSun 2020-01-07T10:50:00.000Z The Sun 5
## 6890 thetimes 2020-01-07T10:47:57.000Z The Times 4
## 6891 DailyMirror 2020-01-07T10:47:11.000Z The Mirror 2
## 6892 guardian 2020-01-07T10:46:56.000Z The Guardian 7
## 6893 Telegraph 2020-01-07T10:45:05.000Z The Telegraph 4
## 6894 DailyMirror 2020-01-07T10:45:03.000Z The Mirror 1
## 6895 MetroUK 2020-01-07T10:44:19.000Z Metro 6
## 6896 DailyMailUK 2020-01-07T10:44:19.000Z Daily Mail U.K. 16
## 6897 TheSun 2020-01-07T10:43:00.000Z The Sun 1
## 6898 DailyMirror 2020-01-07T10:42:42.000Z The Mirror 5
## 6899 TheSun 2020-01-07T10:42:08.000Z The Sun 17
## 6900 DailyMirror 2020-01-07T10:41:31.000Z The Mirror 2
## 6901 DailyMailUK 2020-01-07T10:40:05.000Z Daily Mail U.K. 1
## 6902 TheSun 2020-01-07T10:40:00.000Z The Sun 0
## 6903 guardian 2020-01-07T10:38:50.000Z The Guardian 5
## 6904 DailyMirror 2020-01-07T10:36:24.000Z The Mirror 4
## 6905 TheSun 2020-01-07T10:32:09.000Z The Sun 3
## 6906 EveningStandard 2020-01-07T10:31:15.000Z Evening Standard 0
## 6907 DailyMailUK 2020-01-07T10:31:08.000Z Daily Mail U.K. 52
## 6908 EveningStandard 2020-01-07T10:30:55.000Z Evening Standard 1
## 6909 Telegraph 2020-01-07T10:30:55.000Z The Telegraph 10
## 6910 guardian 2020-01-07T10:30:53.000Z The Guardian 2
## 6911 MetroUK 2020-01-07T10:30:08.000Z Metro 6
## 6912 TheSun 2020-01-07T10:30:00.000Z The Sun 8
## 6913 thetimes 2020-01-07T10:29:55.000Z The Times 22
## 6914 DailyMirror 2020-01-07T10:29:46.000Z The Mirror 5
## 6915 DailyMirror 2020-01-07T10:29:15.000Z The Mirror 4
## 6916 DailyMailUK 2020-01-07T10:25:41.000Z Daily Mail U.K. 14
## 6917 DailyMirror 2020-01-07T10:25:21.000Z The Mirror 3
## 6918 DailyMailUK 2020-01-07T10:25:16.000Z Daily Mail U.K. 9
## 6919 DailyMirror 2020-01-07T10:25:07.000Z The Mirror 4
## 6920 DailyMirror 2020-01-07T10:24:09.000Z The Mirror 6
## 6921 DailyMirror 2020-01-07T10:24:00.000Z The Mirror 4
## 6922 TheSun 2020-01-07T10:22:58.000Z The Sun 5
## 6923 guardian 2020-01-07T10:22:49.000Z The Guardian 2
## 6924 DailyMirror 2020-01-07T10:22:42.000Z The Mirror 1
## 6925 DailyMailUK 2020-01-07T10:21:03.000Z Daily Mail U.K. 25
## 6926 TheSun 2020-01-07T10:20:00.000Z The Sun 22
## 6927 EveningStandard 2020-01-07T10:19:59.000Z Evening Standard 0
## 6928 DailyMirror 2020-01-07T10:17:27.000Z The Mirror 2
## 6929 TheSun 2020-01-07T10:16:41.000Z The Sun 1
## 6930 DailyMirror 2020-01-07T10:16:11.000Z The Mirror 0
## 6931 DailyMirror 2020-01-07T10:15:46.000Z The Mirror 0
## 6932 DailyMirror 2020-01-07T10:15:38.000Z The Mirror 4
## 6933 guardian 2020-01-07T10:13:45.000Z The Guardian 4
## 6934 TheSun 2020-01-07T10:13:05.000Z The Sun 0
## 6935 guardian 2020-01-07T10:13:05.000Z The Guardian 3
## 6936 thetimes 2020-01-07T10:13:04.000Z The Times 10
## 6937 DailyMirror 2020-01-07T10:12:05.000Z The Mirror 1
## 6938 DailyMailUK 2020-01-07T10:11:26.000Z Daily Mail U.K. 4
## 6939 DailyMailUK 2020-01-07T10:11:03.000Z Daily Mail U.K. 3
## 6940 DailyMirror 2020-01-07T10:11:00.000Z The Mirror 0
## 6941 DailyMirror 2020-01-07T10:10:41.000Z The Mirror 3
## 6942 TheSun 2020-01-07T10:10:00.000Z The Sun 19
## 6943 EveningStandard 2020-01-07T10:08:52.000Z Evening Standard 2
## 6944 DailyMailUK 2020-01-07T10:08:21.000Z Daily Mail U.K. 3
## 6945 DailyMirror 2020-01-07T10:08:16.000Z The Mirror 2
## 6946 DailyMirror 2020-01-07T10:08:14.000Z The Mirror 11
## 6947 DailyMailUK 2020-01-07T10:06:36.000Z Daily Mail U.K. 6
## 6948 TheSun 2020-01-07T10:04:05.000Z The Sun 3
## 6949 guardian 2020-01-07T10:03:22.000Z The Guardian 21
## 6950 TheSun 2020-01-07T10:02:55.000Z The Sun 0
## 6951 DailyMirror 2020-01-07T10:02:10.000Z The Mirror 10
## 6952 DailyMirror 2020-01-07T10:01:20.000Z The Mirror 4
## 6953 Telegraph 2020-01-07T10:00:59.000Z The Telegraph 2
## 6954 guardian 2020-01-07T10:00:59.000Z The Guardian 15
## 6955 MetroUK 2020-01-07T10:00:03.000Z Metro 7
## 6956 TheSun 2020-01-07T10:00:00.000Z The Sun 11
## 6957 EveningStandard 2020-01-07T09:59:53.000Z Evening Standard 1
## 6958 DailyMailUK 2020-01-07T09:59:07.000Z Daily Mail U.K. 6
## 6959 guardian 2020-01-07T09:54:33.000Z The Guardian 24
## 6960 thetimes 2020-01-07T09:54:03.000Z The Times 9
## 6961 TheSun 2020-01-07T09:53:01.000Z The Sun 0
## 6962 DailyMailUK 2020-01-07T09:51:07.000Z Daily Mail U.K. 1
## 6963 guardian 2020-01-07T09:50:55.000Z The Guardian 6
## 6964 guardian 2020-01-07T09:50:55.000Z The Guardian 8
## 6965 guardian 2020-01-07T09:50:53.000Z The Guardian 29
## 6966 TheSun 2020-01-07T09:50:00.000Z The Sun 22
## 6967 DailyMirror 2020-01-07T09:49:00.000Z The Mirror 17
## 6968 DailyMirror 2020-01-07T09:48:29.000Z The Mirror 10
## 6969 guardian 2020-01-07T09:48:27.000Z The Guardian 27
## 6970 EveningStandard 2020-01-07T09:48:07.000Z Evening Standard 0
## 6971 DailyMirror 2020-01-07T09:47:40.000Z The Mirror 4
## 6972 Telegraph 2020-01-07T09:46:52.000Z The Telegraph 15
## 6973 MetroUK 2020-01-07T09:44:49.000Z Metro 2
## 6974 guardian 2020-01-07T09:44:49.000Z The Guardian 19
## 6975 MetroUK 2020-01-07T09:43:05.000Z Metro 8
## 6976 DailyMirror 2020-01-07T09:43:01.000Z The Mirror 2
## 6977 TheSun 2020-01-07T09:42:53.000Z The Sun 3
## 6978 DailyMirror 2020-01-07T09:42:21.000Z The Mirror 13
## 6979 DailyMirror 2020-01-07T09:42:00.000Z The Mirror 2
## 6980 DailyMailUK 2020-01-07T09:41:03.000Z Daily Mail U.K. 11
## 6981 DailyMirror 2020-01-07T09:40:40.000Z The Mirror 7
## 6982 TheSun 2020-01-07T09:40:00.000Z The Sun 11
## 6983 EveningStandard 2020-01-07T09:37:56.000Z Evening Standard 0
## 6984 thetimes 2020-01-07T09:36:58.000Z The Times 8
## 6985 guardian 2020-01-07T09:34:56.000Z The Guardian 30
## 6986 TheSun 2020-01-07T09:33:04.000Z The Sun 2
## 6987 guardian 2020-01-07T09:33:00.000Z The Guardian 13
## 6988 TheSun 2020-01-07T09:32:57.000Z The Sun 4
## 6989 guardian 2020-01-07T09:32:05.000Z The Guardian 31
## 6990 DailyMirror 2020-01-07T09:30:21.000Z The Mirror 2
## 6991 DailyMailUK 2020-01-07T09:30:03.000Z Daily Mail U.K. 1
## 6992 TheSun 2020-01-07T09:30:00.000Z The Sun 3
## 6993 DailyMirror 2020-01-07T09:28:15.000Z The Mirror 7
## 6994 MetroUK 2020-01-07T09:27:59.000Z Metro 3
## 6995 EveningStandard 2020-01-07T09:27:23.000Z Evening Standard 34
## 6996 DailyMailUK 2020-01-07T09:27:12.000Z Daily Mail U.K. 6
## 6997 guardian 2020-01-07T09:26:53.000Z The Guardian 178
## 6998 guardian 2020-01-07T09:26:51.000Z The Guardian 3
## 6999 DailyMailUK 2020-01-07T09:26:12.000Z Daily Mail U.K. 13
## 7000 DailyMailUK 2020-01-07T09:23:50.000Z Daily Mail U.K. 12
## 7001 Telegraph 2020-01-07T09:23:08.000Z The Telegraph 13
## 7002 TheSun 2020-01-07T09:23:05.000Z The Sun 3
## 7003 DailyMailUK 2020-01-07T09:22:14.000Z Daily Mail U.K. 10
## 7004 thetimes 2020-01-07T09:20:08.000Z The Times 4
## 7005 EveningStandard 2020-01-07T09:20:06.000Z Evening Standard 1
## 7006 DailyMailUK 2020-01-07T09:20:06.000Z Daily Mail U.K. 23
## 7007 TheSun 2020-01-07T09:20:00.000Z The Sun 21
## 7008 DailyMirror 2020-01-07T09:13:15.000Z The Mirror 2
## 7009 TheSun 2020-01-07T09:12:17.000Z The Sun 1
## 7010 DailyMirror 2020-01-07T09:11:21.000Z The Mirror 2
## 7011 DailyMailUK 2020-01-07T09:11:08.000Z Daily Mail U.K. 11
## 7012 DailyMirror 2020-01-07T09:11:00.000Z The Mirror 9
## 7013 EveningStandard 2020-01-07T09:10:35.000Z Evening Standard 0
## 7014 DailyMirror 2020-01-07T09:10:21.000Z The Mirror 1
## 7015 guardian 2020-01-07T09:10:17.000Z The Guardian 17
## 7016 TheSun 2020-01-07T09:10:00.000Z The Sun 11
## 7017 DailyMirror 2020-01-07T09:09:24.000Z The Mirror 2
## 7018 DailyMirror 2020-01-07T09:09:02.000Z The Mirror 4
## 7019 DailyMirror 2020-01-07T09:06:11.000Z The Mirror 3
## 7020 DailyMirror 2020-01-07T09:05:56.000Z The Mirror 7
## 7021 thetimes 2020-01-07T09:03:18.000Z The Times 4
## 7022 TheSun 2020-01-07T09:02:22.000Z The Sun 2
## 7023 Telegraph 2020-01-07T09:00:20.000Z The Telegraph 2
## 7024 EveningStandard 2020-01-07T09:00:13.000Z Evening Standard 0
## 7025 MetroUK 2020-01-07T09:00:02.000Z Metro 2
## 7026 TheSun 2020-01-07T09:00:00.000Z The Sun 10
## 7027 DailyMailUK 2020-01-07T08:59:05.000Z Daily Mail U.K. 1
## 7028 DailyMirror 2020-01-07T08:58:00.000Z The Mirror 2
## 7029 DailyMirror 2020-01-07T08:54:45.000Z The Mirror 1
## 7030 DailyMirror 2020-01-07T08:54:27.000Z The Mirror 0
## 7031 MetroUK 2020-01-07T08:54:10.000Z Metro 230
## 7032 DailyMirror 2020-01-07T08:53:14.000Z The Mirror 1
## 7033 TheSun 2020-01-07T08:52:22.000Z The Sun 2
## 7034 DailyMirror 2020-01-07T08:51:32.000Z The Mirror 459
## 7035 TheSun 2020-01-07T08:50:32.000Z The Sun 4
## 7036 Telegraph 2020-01-07T08:50:28.000Z The Telegraph 5
## 7037 EveningStandard 2020-01-07T08:50:24.000Z Evening Standard 0
## 7038 DailyMirror 2020-01-07T08:50:05.000Z The Mirror 2
## 7039 TheSun 2020-01-07T08:50:00.000Z The Sun 0
## 7040 DailyMirror 2020-01-07T08:49:33.000Z The Mirror 6
## 7041 DailyMailUK 2020-01-07T08:49:03.000Z Daily Mail U.K. 10
## 7042 DailyMirror 2020-01-07T08:49:00.000Z The Mirror 0
## 7043 DailyMirror 2020-01-07T08:46:39.000Z The Mirror 4
## 7044 DailyMirror 2020-01-07T08:46:32.000Z The Mirror 15
## 7045 thetimes 2020-01-07T08:44:40.000Z The Times 7
## 7046 guardian 2020-01-07T08:43:39.000Z The Guardian 22
## 7047 TheSun 2020-01-07T08:43:01.000Z The Sun 2
## 7048 DailyMailUK 2020-01-07T08:42:23.000Z Daily Mail U.K. 9
## 7049 DailyMirror 2020-01-07T08:41:17.000Z The Mirror 50
## 7050 DailyMailUK 2020-01-07T08:41:07.000Z Daily Mail U.K. 14
## 7051 TheSun 2020-01-07T08:40:00.000Z The Sun 7
## 7052 Telegraph 2020-01-07T08:39:55.000Z The Telegraph 8
## 7053 EveningStandard 2020-01-07T08:37:53.000Z Evening Standard 0
## 7054 DailyMirror 2020-01-07T08:36:24.000Z The Mirror 8
## 7055 TheSun 2020-01-07T08:35:40.000Z The Sun 5
## 7056 TheSun 2020-01-07T08:33:27.000Z The Sun 9
## 7057 DailyMailUK 2020-01-07T08:33:17.000Z Daily Mail U.K. 0
## 7058 DailyMailUK 2020-01-07T08:30:05.000Z Daily Mail U.K. 1
## 7059 MetroUK 2020-01-07T08:30:05.000Z Metro 0
## 7060 TheSun 2020-01-07T08:30:00.000Z The Sun 27
## 7061 Telegraph 2020-01-07T08:29:03.000Z The Telegraph 72
## 7062 thetimes 2020-01-07T08:28:04.000Z The Times 3
## 7063 EveningStandard 2020-01-07T08:27:55.000Z Evening Standard 2
## 7064 guardian 2020-01-07T08:26:05.000Z The Guardian 12
## 7065 DailyMirror 2020-01-07T08:25:08.000Z The Mirror 6
## 7066 DailyMirror 2020-01-07T08:24:32.000Z The Mirror 1
## 7067 DailyMirror 2020-01-07T08:24:02.000Z The Mirror 1
## 7068 DailyMailUK 2020-01-07T08:23:59.000Z Daily Mail U.K. 24
## 7069 DailyMirror 2020-01-07T08:23:53.000Z The Mirror 1
## 7070 MetroUK 2020-01-07T08:22:59.000Z Metro 3
## 7071 MetroUK 2020-01-07T08:22:50.000Z Metro 1
## 7072 TheSun 2020-01-07T08:20:00.000Z The Sun 2
## 7073 DailyMailUK 2020-01-07T08:18:13.000Z Daily Mail U.K. 19
## 7074 EveningStandard 2020-01-07T08:16:39.000Z Evening Standard 0
## 7075 MetroUK 2020-01-07T08:16:06.000Z Metro 8
## 7076 Telegraph 2020-01-07T08:15:24.000Z The Telegraph 2
## 7077 DailyMailUK 2020-01-07T08:12:00.000Z Daily Mail U.K. 10
## 7078 thetimes 2020-01-07T08:11:19.000Z The Times 4
## 7079 EveningStandard 2020-01-07T08:10:21.000Z Evening Standard 0
## 7080 TheSun 2020-01-07T08:10:00.000Z The Sun 1
## 7081 DailyMailUK 2020-01-07T08:07:44.000Z Daily Mail U.K. 9
## 7082 DailyMirror 2020-01-07T08:05:34.000Z The Mirror 0
## 7083 guardian 2020-01-07T08:04:08.000Z The Guardian 25
## 7084 DailyMirror 2020-01-07T08:02:18.000Z The Mirror 2
## 7085 DailyMirror 2020-01-07T08:02:17.000Z The Mirror 2
## 7086 TheSun 2020-01-07T08:02:10.000Z The Sun 2
## 7087 DailyMirror 2020-01-07T08:02:03.000Z The Mirror 2
## 7088 Telegraph 2020-01-07T08:01:16.000Z The Telegraph 3
## 7089 DailyMirror 2020-01-07T08:00:49.000Z The Mirror 4
## 7090 EveningStandard 2020-01-07T08:00:08.000Z Evening Standard 0
## 7091 TheSun 2020-01-07T08:00:00.000Z The Sun 10
## 7092 DailyMirror 2020-01-07T07:58:00.000Z The Mirror 4
## 7093 DailyMirror 2020-01-07T07:54:48.000Z The Mirror 1
## 7094 guardian 2020-01-07T07:54:33.000Z The Guardian 3
## 7095 guardian 2020-01-07T07:54:32.000Z The Guardian 13
## 7096 guardian 2020-01-07T07:54:32.000Z The Guardian 11
## 7097 guardian 2020-01-07T07:54:31.000Z The Guardian 47
## 7098 guardian 2020-01-07T07:54:30.000Z The Guardian 2
## 7099 guardian 2020-01-07T07:54:28.000Z The Guardian 10
## 7100 thetimes 2020-01-07T07:54:13.000Z The Times 5
## 7101 guardian 2020-01-07T07:54:12.000Z The Guardian 22
## 7102 Telegraph 2020-01-07T07:53:55.000Z The Telegraph 6
## 7103 TheSun 2020-01-07T07:52:15.000Z The Sun 4
## 7104 EveningStandard 2020-01-07T07:50:16.000Z Evening Standard 0
## 7105 TheSun 2020-01-07T07:50:00.000Z The Sun 37
## 7106 DailyMirror 2020-01-07T07:48:00.000Z The Mirror 1
## 7107 Telegraph 2020-01-07T07:47:23.000Z The Telegraph 4
## 7108 DailyMirror 2020-01-07T07:45:04.000Z The Mirror 8
## 7109 DailyMailUK 2020-01-07T07:44:26.000Z Daily Mail U.K. 7
## 7110 guardian 2020-01-07T07:44:21.000Z The Guardian 9
## 7111 TheSun 2020-01-07T07:42:24.000Z The Sun 0
## 7112 EveningStandard 2020-01-07T07:40:27.000Z Evening Standard 0
## 7113 TheSun 2020-01-07T07:40:00.000Z The Sun 9
## 7114 DailyMirror 2020-01-07T07:38:02.000Z The Mirror 3
## 7115 thetimes 2020-01-07T07:37:31.000Z The Times 4
## 7116 DailyMirror 2020-01-07T07:36:45.000Z The Mirror 2
## 7117 MetroUK 2020-01-07T07:36:44.000Z Metro 2
## 7118 DailyMirror 2020-01-07T07:36:12.000Z The Mirror 4
## 7119 DailyMailUK 2020-01-07T07:34:10.000Z Daily Mail U.K. 5
## 7120 DailyMirror 2020-01-07T07:33:51.000Z The Mirror 7
## 7121 guardian 2020-01-07T07:33:16.000Z The Guardian 14
## 7122 guardian 2020-01-07T07:33:14.000Z The Guardian 26
## 7123 EveningStandard 2020-01-07T07:32:39.000Z Evening Standard 1
## 7124 TheSun 2020-01-07T07:32:21.000Z The Sun 0
## 7125 EveningStandard 2020-01-07T07:30:26.000Z Evening Standard 2
## 7126 TheSun 2020-01-07T07:30:00.000Z The Sun 2
## 7127 TheSun 2020-01-07T07:29:38.000Z The Sun 12
## 7128 Telegraph 2020-01-07T07:29:23.000Z The Telegraph 6
## 7129 guardian 2020-01-07T07:28:55.000Z The Guardian 10
## 7130 MetroUK 2020-01-07T07:28:54.000Z Metro 2
## 7131 Telegraph 2020-01-07T07:28:28.000Z The Telegraph 3
## 7132 DailyMirror 2020-01-07T07:28:22.000Z The Mirror 7
## 7133 DailyMirror 2020-01-07T07:27:36.000Z The Mirror 14
## 7134 TheSun 2020-01-07T07:27:06.000Z The Sun 3
## 7135 TheSun 2020-01-07T07:22:32.000Z The Sun 11
## 7136 EveningStandard 2020-01-07T07:22:32.000Z Evening Standard 0
## 7137 DailyMailUK 2020-01-07T07:21:31.000Z Daily Mail U.K. 16
## 7138 thetimes 2020-01-07T07:20:34.000Z The Times 14
## 7139 TheSun 2020-01-07T07:20:00.000Z The Sun 24
## 7140 MetroUK 2020-01-07T07:16:52.000Z Metro 2
## 7141 EveningStandard 2020-01-07T07:14:11.000Z Evening Standard 0
## 7142 guardian 2020-01-07T07:12:34.000Z The Guardian 51
## 7143 TheSun 2020-01-07T07:11:25.000Z The Sun 2
## 7144 TheSun 2020-01-07T07:10:00.000Z The Sun 6
## 7145 DailyMirror 2020-01-07T07:04:21.000Z The Mirror 24
## 7146 DailyMirror 2020-01-07T07:03:07.000Z The Mirror 9
## 7147 TheSun 2020-01-07T07:02:36.000Z The Sun 14
## 7148 thetimes 2020-01-07T07:00:39.000Z The Times 11
## 7149 EveningStandard 2020-01-07T07:00:37.000Z Evening Standard 1
## 7150 MetroUK 2020-01-07T07:00:03.000Z Metro 1
## 7151 TheSun 2020-01-07T07:00:00.000Z The Sun 16
## 7152 DailyMirror 2020-01-07T06:58:03.000Z The Mirror 5
## 7153 DailyMirror 2020-01-07T06:55:21.000Z The Mirror 3
## 7154 guardian 2020-01-07T06:54:43.000Z The Guardian 16
## 7155 Telegraph 2020-01-07T06:53:46.000Z The Telegraph 10
## 7156 EveningStandard 2020-01-07T06:52:01.000Z Evening Standard 0
## 7157 DailyMirror 2020-01-07T06:48:25.000Z The Mirror 3
## 7158 guardian 2020-01-07T06:44:52.000Z The Guardian 26
## 7159 guardian 2020-01-07T06:44:51.000Z The Guardian 16
## 7160 DailyMirror 2020-01-07T06:44:36.000Z The Mirror 12
## 7161 TheSun 2020-01-07T06:43:01.000Z The Sun 0
## 7162 EveningStandard 2020-01-07T06:43:00.000Z Evening Standard 1
## 7163 thetimes 2020-01-07T06:41:02.000Z The Times 11
## 7164 Telegraph 2020-01-07T06:40:07.000Z The Telegraph 5
## 7165 TheSun 2020-01-07T06:40:00.000Z The Sun 17
## 7166 EveningStandard 2020-01-07T06:34:08.000Z Evening Standard 0
## 7167 MetroUK 2020-01-07T06:30:04.000Z Metro 3
## 7168 EveningStandard 2020-01-07T06:25:17.000Z Evening Standard 0
## 7169 DailyMirror 2020-01-07T06:24:00.000Z The Mirror 2
## 7170 TheSun 2020-01-07T06:22:21.000Z The Sun 1
## 7171 guardian 2020-01-07T06:21:04.000Z The Guardian 43
## 7172 guardian 2020-01-07T06:21:03.000Z The Guardian 28
## 7173 thetimes 2020-01-07T06:20:23.000Z The Times 9
## 7174 TheSun 2020-01-07T06:20:00.000Z The Sun 6
## 7175 EveningStandard 2020-01-07T06:18:23.000Z Evening Standard 2
## 7176 guardian 2020-01-07T06:15:25.000Z The Guardian 90
## 7177 DailyMirror 2020-01-07T06:14:00.000Z The Mirror 1
## 7178 EveningStandard 2020-01-07T06:08:32.000Z Evening Standard 0
## 7179 TheSun 2020-01-07T06:02:38.000Z The Sun 0
## 7180 thetimes 2020-01-07T06:00:44.000Z The Times 11
## 7181 MetroUK 2020-01-07T06:00:08.000Z Metro 5
## 7182 TheSun 2020-01-07T06:00:00.000Z The Sun 23
## 7183 EveningStandard 2020-01-07T05:58:42.000Z Evening Standard 0
## 7184 guardian 2020-01-07T05:57:06.000Z The Guardian 1
## 7185 Telegraph 2020-01-07T05:55:52.000Z The Telegraph 11
## 7186 EveningStandard 2020-01-07T05:48:54.000Z Evening Standard 7
## 7187 DailyMirror 2020-01-07T05:43:01.000Z The Mirror 0
## 7188 TheSun 2020-01-07T05:42:59.000Z The Sun 1
## 7189 TheSun 2020-01-07T05:40:00.000Z The Sun 86
## 7190 EveningStandard 2020-01-07T05:39:01.000Z Evening Standard 1
## 7191 EveningStandard 2020-01-07T05:29:11.000Z Evening Standard 0
## 7192 DailyMirror 2020-01-07T05:23:00.000Z The Mirror 0
## 7193 guardian 2020-01-07T05:22:08.000Z The Guardian 1
## 7194 TheSun 2020-01-07T05:22:07.000Z The Sun 0
## 7195 EveningStandard 2020-01-07T05:20:09.000Z Evening Standard 0
## 7196 DailyMirror 2020-01-07T05:16:00.000Z The Mirror 1
## 7197 DailyMirror 2020-01-07T05:14:37.000Z The Mirror 2
## 7198 DailyMirror 2020-01-07T05:14:00.000Z The Mirror 1
## 7199 EveningStandard 2020-01-07T05:10:19.000Z Evening Standard 1
## 7200 guardian 2020-01-07T05:08:19.000Z The Guardian 67
## 7201 TheSun 2020-01-07T05:02:27.000Z The Sun 0
## 7202 Telegraph 2020-01-07T05:00:44.000Z The Telegraph 2
## 7203 EveningStandard 2020-01-07T05:00:40.000Z Evening Standard 0
## 7204 TheSun 2020-01-07T05:00:00.000Z The Sun 2
## 7205 DailyMirror 2020-01-07T04:55:08.000Z The Mirror 12
## 7206 EveningStandard 2020-01-07T04:50:50.000Z Evening Standard 0
## 7207 EveningStandard 2020-01-07T04:43:49.000Z Evening Standard 1
## 7208 DailyMirror 2020-01-07T04:42:53.000Z The Mirror 1
## 7209 TheSun 2020-01-07T04:42:51.000Z The Sun 2
## 7210 TheSun 2020-01-07T04:40:00.000Z The Sun 8
## 7211 EveningStandard 2020-01-07T04:35:56.000Z Evening Standard 0
## 7212 guardian 2020-01-07T04:34:58.000Z The Guardian 47
## 7213 EveningStandard 2020-01-07T04:27:54.000Z Evening Standard 0
## 7214 TheSun 2020-01-07T04:23:00.000Z The Sun 2
## 7215 DailyMirror 2020-01-07T04:21:16.000Z The Mirror 0
## 7216 TheSun 2020-01-07T04:20:00.000Z The Sun 5
## 7217 EveningStandard 2020-01-07T04:19:04.000Z Evening Standard 1
## 7218 DailyMirror 2020-01-07T04:16:11.000Z The Mirror 3
## 7219 DailyMirror 2020-01-07T04:16:00.000Z The Mirror 1
## 7220 DailyMirror 2020-01-07T04:14:00.000Z The Mirror 0
## 7221 guardian 2020-01-07T04:12:10.000Z The Guardian 4
## 7222 EveningStandard 2020-01-07T04:10:12.000Z Evening Standard 0
## 7223 TheSun 2020-01-07T04:02:21.000Z The Sun 4
## 7224 guardian 2020-01-07T04:01:26.000Z The Guardian 146
## 7225 EveningStandard 2020-01-07T04:01:21.000Z Evening Standard 0
## 7226 TheSun 2020-01-07T04:00:00.000Z The Sun 4
## 7227 guardian 2020-01-07T03:56:27.000Z The Guardian 8
## 7228 EveningStandard 2020-01-07T03:52:28.000Z Evening Standard 0
## 7229 EveningStandard 2020-01-07T03:43:39.000Z Evening Standard 0
## 7230 guardian 2020-01-07T03:43:38.000Z The Guardian 18
## 7231 TheSun 2020-01-07T03:42:39.000Z The Sun 1
## 7232 TheSun 2020-01-07T03:40:00.000Z The Sun 10
## 7233 EveningStandard 2020-01-07T03:34:42.000Z Evening Standard 0
## 7234 guardian 2020-01-07T03:31:05.000Z The Guardian 12
## 7235 DailyMirror 2020-01-07T03:29:18.000Z The Mirror 1
## 7236 EveningStandard 2020-01-07T03:25:43.000Z Evening Standard 0
## 7237 DailyMirror 2020-01-07T03:24:45.000Z The Mirror 3
## 7238 TheSun 2020-01-07T03:22:46.000Z The Sun 1
## 7239 DailyMirror 2020-01-07T03:21:06.000Z The Mirror 0
## 7240 TheSun 2020-01-07T03:20:00.000Z The Sun 5
## 7241 DailyMirror 2020-01-07T03:16:00.000Z The Mirror 1
## 7242 EveningStandard 2020-01-07T03:15:52.000Z Evening Standard 0
## 7243 DailyMirror 2020-01-07T03:13:58.000Z The Mirror 0
## 7244 DailyMirror 2020-01-07T03:13:00.000Z The Mirror 0
## 7245 guardian 2020-01-07T03:06:58.000Z The Guardian 98
## 7246 EveningStandard 2020-01-07T03:06:02.000Z Evening Standard 0
## 7247 TheSun 2020-01-07T03:02:10.000Z The Sun 1
## 7248 TheSun 2020-01-07T03:00:00.000Z The Sun 8
## 7249 DailyMirror 2020-01-07T02:59:00.000Z The Mirror 2
## 7250 EveningStandard 2020-01-07T02:56:14.000Z Evening Standard 1
## 7251 EveningStandard 2020-01-07T02:47:21.000Z Evening Standard 0
## 7252 guardian 2020-01-07T02:43:16.000Z The Guardian 25
## 7253 TheSun 2020-01-07T02:42:28.000Z The Sun 28
## 7254 TheSun 2020-01-07T02:40:00.000Z The Sun 6
## 7255 EveningStandard 2020-01-07T02:38:30.000Z Evening Standard 1
## 7256 DailyMirror 2020-01-07T02:32:00.000Z The Mirror 1
## 7257 EveningStandard 2020-01-07T02:28:40.000Z Evening Standard 1
## 7258 TheSun 2020-01-07T02:22:48.000Z The Sun 3
## 7259 TheSun 2020-01-07T02:20:00.000Z The Sun 14
## 7260 EveningStandard 2020-01-07T02:18:50.000Z Evening Standard 0
## 7261 DailyMirror 2020-01-07T02:16:00.000Z The Mirror 6
## 7262 EveningStandard 2020-01-07T02:09:00.000Z Evening Standard 1
## 7263 DailyMirror 2020-01-07T02:06:00.000Z The Mirror 1
## 7264 guardian 2020-01-07T02:05:05.000Z The Guardian 130
## 7265 TheSun 2020-01-07T02:02:07.000Z The Sun 1
## 7266 TheSun 2020-01-07T02:00:00.000Z The Sun 20
## 7267 EveningStandard 2020-01-07T01:59:14.000Z Evening Standard 1
## 7268 DailyMirror 2020-01-07T01:59:00.000Z The Mirror 4
## 7269 Telegraph 2020-01-07T01:55:17.000Z The Telegraph 4
## 7270 guardian 2020-01-07T01:54:14.000Z The Guardian 101
## 7271 EveningStandard 2020-01-07T01:49:20.000Z Evening Standard 0
## 7272 TheSun 2020-01-07T01:42:27.000Z The Sun 2
## 7273 DailyMirror 2020-01-07T01:42:09.000Z The Mirror 4
## 7274 DailyMirror 2020-01-07T01:41:00.000Z The Mirror 3
## 7275 DailyMirror 2020-01-07T01:40:35.000Z The Mirror 2
## 7276 TheSun 2020-01-07T01:40:00.000Z The Sun 5
## 7277 EveningStandard 2020-01-07T01:39:31.000Z Evening Standard 0
## 7278 DailyMirror 2020-01-07T01:38:58.000Z The Mirror 3
## 7279 EveningStandard 2020-01-07T01:30:40.000Z Evening Standard 0
## 7280 TheSun 2020-01-07T01:22:48.000Z The Sun 2
## 7281 EveningStandard 2020-01-07T01:21:49.000Z Evening Standard 1
## 7282 guardian 2020-01-07T01:20:50.000Z The Guardian 26
## 7283 TheSun 2020-01-07T01:20:00.000Z The Sun 24
## 7284 DailyMirror 2020-01-07T01:15:31.000Z The Mirror 11
## 7285 DailyMirror 2020-01-07T01:13:00.000Z The Mirror 0
## 7286 EveningStandard 2020-01-07T01:12:58.000Z Evening Standard 0
## 7287 guardian 2020-01-07T01:05:04.000Z The Guardian 1
## 7288 EveningStandard 2020-01-07T01:04:02.000Z Evening Standard 1
## 7289 TheSun 2020-01-07T01:03:03.000Z The Sun 1
## 7290 TheSun 2020-01-07T01:00:00.000Z The Sun 7
## 7291 DailyMirror 2020-01-07T00:58:00.000Z The Mirror 4
## 7292 EveningStandard 2020-01-07T00:57:10.000Z Evening Standard 0
## 7293 guardian 2020-01-07T00:54:13.000Z The Guardian 7
## 7294 EveningStandard 2020-01-07T00:47:05.000Z Evening Standard 3
## 7295 guardian 2020-01-07T00:44:09.000Z The Guardian 17
## 7296 DailyMirror 2020-01-07T00:44:00.000Z The Mirror 6
## 7297 TheSun 2020-01-07T00:42:11.000Z The Sun 7
## 7298 DailyMirror 2020-01-07T00:41:00.000Z The Mirror 1
## 7299 TheSun 2020-01-07T00:40:00.000Z The Sun 21
## 7300 EveningStandard 2020-01-07T00:38:15.000Z Evening Standard 2
## 7301 DailyMirror 2020-01-07T00:32:00.000Z The Mirror 4
## 7302 guardian 2020-01-07T00:30:17.000Z The Guardian 11
## 7303 EveningStandard 2020-01-07T00:30:16.000Z Evening Standard 0
## 7304 TheSun 2020-01-07T00:22:25.000Z The Sun 7
## 7305 EveningStandard 2020-01-07T00:21:25.000Z Evening Standard 1
## 7306 TheSun 2020-01-07T00:20:00.000Z The Sun 0
## 7307 guardian 2020-01-07T00:18:19.000Z The Guardian 54
## 7308 guardian 2020-01-07T00:18:18.000Z The Guardian 2
## 7309 guardian 2020-01-07T00:18:16.000Z The Guardian 11
## 7310 DailyMirror 2020-01-07T00:17:00.000Z The Mirror 5
## 7311 EveningStandard 2020-01-07T00:12:34.000Z Evening Standard 0
## 7312 Telegraph 2020-01-07T00:09:39.000Z The Telegraph 27
## 7313 DailyMirror 2020-01-07T00:06:00.000Z The Mirror 3
## 7314 EveningStandard 2020-01-07T00:05:40.000Z Evening Standard 0
## 7315 DailyMirror 2020-01-07T00:03:39.000Z The Mirror 1
## 7316 TheSun 2020-01-07T00:02:45.000Z The Sun 4
## 7317 TheSun 2020-01-07T00:00:00.000Z The Sun 6
## 7318 DailyMirror 2020-01-06T23:58:00.000Z The Mirror 7
## 7319 EveningStandard 2020-01-06T23:57:35.000Z Evening Standard 1
## 7320 DailyMirror 2020-01-06T23:57:30.000Z The Mirror 1
## 7321 DailyMailUK 2020-01-06T23:56:05.000Z Daily Mail U.K. 5
## 7322 guardian 2020-01-06T23:55:27.000Z The Guardian 8
## 7323 Telegraph 2020-01-06T23:53:32.000Z The Telegraph 1
## 7324 TheSun 2020-01-06T23:52:30.000Z The Sun 2
## 7325 TheSun 2020-01-06T23:50:00.000Z The Sun 41
## 7326 EveningStandard 2020-01-06T23:49:32.000Z Evening Standard 0
## 7327 DailyMirror 2020-01-06T23:44:00.000Z The Mirror 5
## 7328 TheSun 2020-01-06T23:42:39.000Z The Sun 3
## 7329 EveningStandard 2020-01-06T23:41:40.000Z Evening Standard 0
## 7330 DailyMirror 2020-01-06T23:41:00.000Z The Mirror 7
## 7331 DailyMailUK 2020-01-06T23:40:08.000Z Daily Mail U.K. 7
## 7332 TheSun 2020-01-06T23:40:00.000Z The Sun 11
## 7333 guardian 2020-01-06T23:39:43.000Z The Guardian 27
## 7334 EveningStandard 2020-01-06T23:35:29.000Z Evening Standard 0
## 7335 Telegraph 2020-01-06T23:32:34.000Z The Telegraph 6
## 7336 TheSun 2020-01-06T23:32:30.000Z The Sun 1
## 7337 DailyMirror 2020-01-06T23:32:00.000Z The Mirror 1
## 7338 DailyMirror 2020-01-06T23:31:00.000Z The Mirror 0
## 7339 TheSun 2020-01-06T23:30:00.000Z The Sun 3
## 7340 guardian 2020-01-06T23:29:34.000Z The Guardian 2
## 7341 EveningStandard 2020-01-06T23:28:28.000Z Evening Standard 0
## 7342 TheSun 2020-01-06T23:27:30.000Z The Sun 1
## 7343 DailyMirror 2020-01-06T23:23:33.000Z The Mirror 12
## 7344 TheSun 2020-01-06T23:22:33.000Z The Sun 4
## 7345 DailyMailUK 2020-01-06T23:22:06.000Z Daily Mail U.K. 7
## 7346 DailyMirror 2020-01-06T23:22:00.000Z The Mirror 0
## 7347 EveningStandard 2020-01-06T23:21:13.000Z Evening Standard 1
## 7348 TheSun 2020-01-06T23:20:00.000Z The Sun 3
## 7349 guardian 2020-01-06T23:19:15.000Z The Guardian 29
## 7350 Telegraph 2020-01-06T23:18:19.000Z The Telegraph 11
## 7351 TheSun 2020-01-06T23:17:18.000Z The Sun 21
## 7352 DailyMirror 2020-01-06T23:16:00.000Z The Mirror 4
## 7353 EveningStandard 2020-01-06T23:13:21.000Z Evening Standard 0
## 7354 DailyMirror 2020-01-06T23:13:00.000Z The Mirror 0
## 7355 DailyMirror 2020-01-06T23:13:00.000Z The Mirror 1
## 7356 TheSun 2020-01-06T23:12:21.000Z The Sun 3
## 7357 guardian 2020-01-06T23:06:34.000Z The Guardian 2
## 7358 guardian 2020-01-06T23:06:33.000Z The Guardian 0
## 7359 guardian 2020-01-06T23:06:31.000Z The Guardian 15
## 7360 DailyMirror 2020-01-07T17:07:00.000Z The Mirror 4
## 7361 EveningStandard 2020-01-07T17:06:42.000Z Evening Standard 0
## 7362 DailyMirror 2020-01-07T17:06:00.000Z The Mirror 2
## 7363 guardian 2020-01-07T17:05:14.000Z The Guardian 50
## 7364 DailyMirror 2020-01-07T17:05:00.000Z The Mirror 5
## 7365 DailyMirror 2020-01-07T17:03:56.000Z The Mirror 5
## 7366 MetroUK 2020-01-07T17:03:12.000Z Metro 2
## 7367 TheSun 2020-01-07T17:02:35.000Z The Sun 2
## 7368 DailyMirror 2020-01-07T17:02:00.000Z The Mirror 2
## 7369 DailyMirror 2020-01-07T17:02:00.000Z The Mirror 1
## 7370 MetroUK 2020-01-07T17:01:17.000Z Metro 2
## 7371 Telegraph 2020-01-07T17:00:54.000Z The Telegraph 0
## 7372 Telegraph 2020-01-07T17:00:49.000Z The Telegraph 2
## 7373 DailyMirror 2020-01-07T17:00:48.000Z The Mirror 0
## 7374 DailyMirror 2020-01-07T17:00:34.000Z The Mirror 14
## 7375 MetroUK 2020-01-07T17:00:11.000Z Metro 2
## 7376 TheSun 2020-01-07T17:00:00.000Z The Sun 1
## 7377 EveningStandard 2020-01-07T17:00:00.000Z Evening Standard 4
## 7378 DailyMailUK 2020-01-07T16:59:03.000Z Daily Mail U.K. 7
## 7379 guardian 2020-01-07T16:57:42.000Z The Guardian 11
## 7380 DailyMailUK 2020-01-07T16:57:22.000Z Daily Mail U.K. 9
## 7381 EveningStandard 2020-01-07T16:56:26.000Z Evening Standard 0
## 7382 guardian 2020-01-07T16:56:11.000Z The Guardian 7
## 7383 guardian 2020-01-07T16:56:10.000Z The Guardian 19
## 7384 DailyMirror 2020-01-07T16:56:00.000Z The Mirror 3
## 7385 guardian 2020-01-07T16:55:16.000Z The Guardian 9
## 7386 DailyMailUK 2020-01-07T16:54:29.000Z Daily Mail U.K. 24
## 7387 DailyMirror 2020-01-07T16:54:00.000Z The Mirror 1
## 7388 DailyMirror 2020-01-07T16:53:47.000Z The Mirror 6
## 7389 DailyMirror 2020-01-07T16:53:38.000Z The Mirror 3
## 7390 DailyMirror 2020-01-07T16:52:39.000Z The Mirror 1
## 7391 TheSun 2020-01-07T16:52:21.000Z The Sun 4
## 7392 DailyMirror 2020-01-07T16:52:00.000Z The Mirror 2
## 7393 DailyMailUK 2020-01-07T16:51:06.000Z Daily Mail U.K. 5
## 7394 EveningStandard 2020-01-07T16:51:03.000Z Evening Standard 1
## 7395 TheSun 2020-01-07T16:50:00.000Z The Sun 16
## 7396 EveningStandard 2020-01-07T16:47:47.000Z Evening Standard 1
## 7397 Telegraph 2020-01-07T16:47:13.000Z The Telegraph 2
## 7398 DailyMailUK 2020-01-07T16:46:11.000Z Daily Mail U.K. 12
## 7399 DailyMailUK 2020-01-07T16:46:09.000Z Daily Mail U.K. 25
## 7400 DailyMirror 2020-01-07T16:45:50.000Z The Mirror 5
## 7401 guardian 2020-01-07T16:45:29.000Z The Guardian 10
## 7402 DailyMirror 2020-01-07T16:44:10.000Z The Mirror 3
## 7403 Telegraph 2020-01-07T16:43:32.000Z The Telegraph 13
## 7404 TheSun 2020-01-07T16:43:06.000Z The Sun 2
## 7405 DailyMailUK 2020-01-07T16:42:05.000Z Daily Mail U.K. 4
## 7406 DailyMirror 2020-01-07T16:42:03.000Z The Mirror 1
## 7407 DailyMirror 2020-01-07T16:42:00.000Z The Mirror 0
## 7408 EveningStandard 2020-01-07T16:41:36.000Z Evening Standard 1
## 7409 DailyMirror 2020-01-07T16:41:16.000Z The Mirror 1
## 7410 DailyMirror 2020-01-07T16:40:28.000Z The Mirror 2
## 7411 DailyMirror 2020-01-07T16:40:00.000Z The Mirror 0
## 7412 TheSun 2020-01-07T16:40:00.000Z The Sun 8
## 7413 DailyMirror 2020-01-07T16:39:02.000Z The Mirror 2
## 7414 DailyMirror 2020-01-07T16:38:00.000Z The Mirror 0
## 7415 Telegraph 2020-01-07T16:37:59.000Z The Telegraph 13
## 7416 EveningStandard 2020-01-07T16:37:54.000Z Evening Standard 0
## 7417 DailyMirror 2020-01-07T16:37:26.000Z The Mirror 3
## 7418 DailyMirror 2020-01-07T16:36:00.000Z The Mirror 1
## 7419 DailyMirror 2020-01-07T16:35:58.000Z The Mirror 2
## 7420 guardian 2020-01-07T16:34:43.000Z The Guardian 1
## 7421 DailyMirror 2020-01-07T16:34:00.000Z The Mirror 1
## 7422 EveningStandard 2020-01-07T16:32:58.000Z Evening Standard 0
## 7423 TheSun 2020-01-07T16:32:13.000Z The Sun 6
## 7424 MetroUK 2020-01-07T16:30:12.000Z Metro 0
## 7425 DailyMailUK 2020-01-07T16:30:06.000Z Daily Mail U.K. 11
## 7426 TheSun 2020-01-07T16:30:00.000Z The Sun 5
## 7427 DailyMailUK 2020-01-07T16:29:39.000Z Daily Mail U.K. 2
## 7428 EveningStandard 2020-01-07T16:28:34.000Z Evening Standard 0
## 7429 MetroUK 2020-01-07T16:27:23.000Z Metro 7
## 7430 DailyMirror 2020-01-07T16:27:00.000Z The Mirror 1
## 7431 DailyMirror 2020-01-07T16:26:11.000Z The Mirror 8
## 7432 guardian 2020-01-07T16:25:38.000Z The Guardian 1
## 7433 Telegraph 2020-01-07T16:24:49.000Z The Telegraph 10
## 7434 Telegraph 2020-01-07T16:24:43.000Z The Telegraph 2
## 7435 DailyMirror 2020-01-07T16:24:16.000Z The Mirror 3
## 7436 EveningStandard 2020-01-07T16:23:43.000Z Evening Standard 0
## 7437 TheSun 2020-01-07T16:22:43.000Z The Sun 3
## 7438 DailyMirror 2020-01-07T16:22:00.000Z The Mirror 5
## 7439 DailyMailUK 2020-01-07T16:20:09.000Z Daily Mail U.K. 1
## 7440 TheSun 2020-01-07T16:20:00.000Z The Sun 27
## 7441 MetroUK 2020-01-07T16:19:51.000Z Metro 24
## 7442 EveningStandard 2020-01-07T16:19:43.000Z Evening Standard 0
## 7443 TheSun 2020-01-07T16:17:47.000Z The Sun 0
## 7444 DailyMirror 2020-01-07T16:17:39.000Z The Mirror 2
## 7445 DailyMirror 2020-01-07T16:17:00.000Z The Mirror 2
## 7446 DailyMirror 2020-01-07T16:16:04.000Z The Mirror 2
## 7447 guardian 2020-01-07T16:15:34.000Z The Guardian 17
## 7448 DailyMirror 2020-01-07T16:15:10.000Z The Mirror 0
## 7449 Telegraph 2020-01-07T16:14:29.000Z The Telegraph 0
## 7450 MetroUK 2020-01-07T16:13:54.000Z Metro 7
## 7451 TheSun 2020-01-07T16:13:43.000Z The Sun 18
## 7452 DailyMirror 2020-01-07T16:13:10.000Z The Mirror 3
## 7453 DailyMirror 2020-01-07T16:13:00.000Z The Mirror 3
## 7454 EveningStandard 2020-01-07T16:12:57.000Z Evening Standard 5
## 7455 TheSun 2020-01-07T16:12:27.000Z The Sun 1
## 7456 DailyMirror 2020-01-07T16:12:00.000Z The Mirror 2
## 7457 DailyMailUK 2020-01-07T16:11:05.000Z Daily Mail U.K. 4
## 7458 EveningStandard 2020-01-07T16:10:30.000Z Evening Standard 1
## 7459 TheSun 2020-01-07T16:10:00.000Z The Sun 2
## 7460 TheSun 2020-01-07T16:09:04.000Z The Sun 1
## 7461 guardian 2020-01-07T16:05:51.000Z The Guardian 26
## 7462 DailyMirror 2020-01-07T16:05:00.000Z The Mirror 4
## 7463 guardian 2020-01-07T16:04:53.000Z The Guardian 19
## 7464 guardian 2020-01-07T16:04:52.000Z The Guardian 8
## 7465 guardian 2020-01-07T16:04:50.000Z The Guardian 28
## 7466 EveningStandard 2020-01-07T16:04:36.000Z Evening Standard 0
## 7467 TheSun 2020-01-07T16:02:35.000Z The Sun 3
## 7468 DailyMirror 2020-01-07T16:02:00.000Z The Mirror 2
## 7469 Telegraph 2020-01-07T16:01:29.000Z The Telegraph 5
## 7470 TheSun 2020-01-07T16:01:27.000Z The Sun 1
## 7471 DailyMirror 2020-01-07T16:00:17.000Z The Mirror 7
## 7472 MetroUK 2020-01-07T16:00:11.000Z Metro 3
## 7473 DailyMirror 2020-01-07T16:00:00.000Z The Mirror 0
## 7474 TheSun 2020-01-07T16:00:00.000Z The Sun 3
## 7475 EveningStandard 2020-01-07T15:59:21.000Z Evening Standard 0
## 7476 DailyMirror 2020-01-07T15:59:07.000Z The Mirror 6
## 7477 DailyMailUK 2020-01-07T15:59:05.000Z Daily Mail U.K. 2
## 7478 MetroUK 2020-01-07T15:59:00.000Z Metro 1
## 7479 DailyMirror 2020-01-07T15:59:00.000Z The Mirror 3
## 7480 Telegraph 2020-01-07T15:57:35.000Z The Telegraph 2
## 7481 thetimes 2020-01-07T15:57:32.000Z The Times 1
## 7482 DailyMirror 2020-01-07T15:56:00.000Z The Mirror 0
## 7483 guardian 2020-01-07T15:55:16.000Z The Guardian 36
## 7484 DailyMirror 2020-01-07T15:55:03.000Z The Mirror 5
## 7485 EveningStandard 2020-01-07T15:54:22.000Z Evening Standard 1
## 7486 DailyMirror 2020-01-07T15:53:00.000Z The Mirror 0
## 7487 Telegraph 2020-01-07T15:52:56.000Z The Telegraph 3
## 7488 Telegraph 2020-01-07T15:52:49.000Z The Telegraph 3
## 7489 Telegraph 2020-01-07T15:52:44.000Z The Telegraph 3
## 7490 MetroUK 2020-01-07T15:52:38.000Z Metro 2
## 7491 TheSun 2020-01-07T15:52:26.000Z The Sun 7
## 7492 DailyMirror 2020-01-07T15:52:07.000Z The Mirror 7
## 7493 DailyMirror 2020-01-07T15:51:37.000Z The Mirror 8
## 7494 EveningStandard 2020-01-07T15:50:23.000Z Evening Standard 0
## 7495 TheSun 2020-01-07T15:50:00.000Z The Sun 3
## 7496 DailyMirror 2020-01-07T15:50:00.000Z The Mirror 2
## 7497 DailyMirror 2020-01-07T15:49:00.000Z The Mirror 0
## 7498 DailyMailUK 2020-01-07T15:48:57.000Z Daily Mail U.K. 21
## 7499 DailyMirror 2020-01-07T15:48:20.000Z The Mirror 3
## 7500 guardian 2020-01-07T15:47:34.000Z The Guardian 10
## 7501 Telegraph 2020-01-07T15:46:27.000Z The Telegraph 9
## 7502 DailyMirror 2020-01-07T15:45:26.000Z The Mirror 3
## 7503 EveningStandard 2020-01-07T15:45:25.000Z Evening Standard 0
## 7504 DailyMirror 2020-01-07T15:44:19.000Z The Mirror 3
## 7505 DailyMirror 2020-01-07T15:43:00.000Z The Mirror 3
## 7506 DailyMirror 2020-01-07T15:42:56.000Z The Mirror 0
## 7507 TheSun 2020-01-07T15:42:28.000Z The Sun 3
## 7508 DailyMirror 2020-01-07T15:42:00.000Z The Mirror 1
## 7509 DailyMirror 2020-01-07T15:42:00.000Z The Mirror 3
## 7510 DailyMirror 2020-01-07T15:40:54.000Z The Mirror 0
## 7511 thetimes 2020-01-07T15:40:41.000Z The Times 3
## 7512 DailyMirror 2020-01-07T15:40:27.000Z The Mirror 5
## 7513 DailyMailUK 2020-01-07T15:40:07.000Z Daily Mail U.K. 0
## 7514 TheSun 2020-01-07T15:40:00.000Z The Sun 1
## 7515 EveningStandard 2020-01-07T15:39:30.000Z Evening Standard 0
## 7516 guardian 2020-01-07T15:39:00.000Z The Guardian 21
## 7517 guardian 2020-01-07T15:39:00.000Z The Guardian 4
## 7518 DailyMirror 2020-01-07T15:36:00.000Z The Mirror 2
## 7519 EveningStandard 2020-01-07T15:33:27.000Z Evening Standard 1
## 7520 DailyMirror 2020-01-07T15:33:00.000Z The Mirror 1
## 7521 TheSun 2020-01-07T15:32:30.000Z The Sun 3
## 7522 guardian 2020-01-07T15:30:33.000Z The Guardian 18
## 7523 MetroUK 2020-01-07T15:30:14.000Z Metro 0
## 7524 DailyMailUK 2020-01-07T15:30:07.000Z Daily Mail U.K. 3
## 7525 TheSun 2020-01-07T15:30:00.000Z The Sun 1
## 7526 Telegraph 2020-01-07T15:29:16.000Z The Telegraph 10
## 7527 DailyMirror 2020-01-07T15:27:59.000Z The Mirror 2
## 7528 DailyMirror 2020-01-07T15:27:15.000Z The Mirror 3
## 7529 TheSun 2020-01-07T15:27:14.000Z The Sun 1
## 7530 EveningStandard 2020-01-07T15:25:17.000Z Evening Standard 2
## 7531 thetimes 2020-01-07T15:24:03.000Z The Times 2
## 7532 DailyMirror 2020-01-07T15:24:00.000Z The Mirror 1
## 7533 TheSun 2020-01-07T15:23:01.000Z The Sun 0
## 7534 TheSun 2020-01-07T15:21:36.000Z The Sun 3
## 7535 DailyMirror 2020-01-07T15:21:27.000Z The Mirror 23
## 7536 EveningStandard 2020-01-07T15:20:10.000Z Evening Standard 0
## 7537 DailyMailUK 2020-01-07T15:20:04.000Z Daily Mail U.K. 10
## 7538 TheSun 2020-01-07T15:20:00.000Z The Sun 9
## 7539 guardian 2020-01-07T15:19:10.000Z The Guardian 3
## 7540 DailyMirror 2020-01-07T15:16:00.000Z The Mirror 0
## 7541 DailyMirror 2020-01-07T15:15:17.000Z The Mirror 8
## 7542 DailyMirror 2020-01-07T15:14:48.000Z The Mirror 5
## 7543 EveningStandard 2020-01-07T15:13:43.000Z Evening Standard 0
## 7544 DailyMirror 2020-01-07T15:13:24.000Z The Mirror 8
## 7545 TheSun 2020-01-07T15:12:41.000Z The Sun 5
## 7546 DailyMailUK 2020-01-07T15:11:04.000Z Daily Mail U.K. 12
## 7547 TheSun 2020-01-07T15:10:00.000Z The Sun 9
## 7548 guardian 2020-01-07T15:09:00.000Z The Guardian 2
## 7549 DailyMirror 2020-01-07T15:08:47.000Z The Mirror 11
## 7550 guardian 2020-01-07T15:08:46.000Z The Guardian 23
## 7551 DailyMirror 2020-01-07T15:08:42.000Z The Mirror 1
## 7552 thetimes 2020-01-07T15:07:49.000Z The Times 7
## 7553 EveningStandard 2020-01-07T15:06:47.000Z Evening Standard 1
## 7554 Telegraph 2020-01-07T15:05:51.000Z The Telegraph 11
## 7555 TheSun 2020-01-07T15:02:52.000Z The Sun 4
## 7556 DailyMirror 2020-01-07T15:02:00.000Z The Mirror 3
## 7557 DailyMirror 2020-01-07T15:01:00.000Z The Mirror 5
## 7558 MetroUK 2020-01-07T15:00:29.000Z Metro 3
## 7559 TheSun 2020-01-07T15:00:00.000Z The Sun 6
## 7560 EveningStandard 2020-01-07T15:00:00.000Z Evening Standard 3
## 7561 DailyMailUK 2020-01-07T14:59:04.000Z Daily Mail U.K. 76
## 7562 EveningStandard 2020-01-07T14:58:52.000Z Evening Standard 1
## 7563 DailyMirror 2020-01-07T14:58:27.000Z The Mirror 8
## 7564 TheSun 2020-01-07T14:58:03.000Z The Sun 3
## 7565 guardian 2020-01-07T14:57:50.000Z The Guardian 9
## 7566 DailyMirror 2020-01-07T14:56:00.000Z The Mirror 2
## 7567 DailyMirror 2020-01-07T14:56:00.000Z The Mirror 6
## 7568 DailyMirror 2020-01-07T14:55:00.000Z The Mirror 3
## 7569 DailyMirror 2020-01-07T14:54:00.000Z The Mirror 0
## 7570 TheSun 2020-01-07T14:52:51.000Z The Sun 2
## 7571 DailyMirror 2020-01-07T14:51:15.000Z The Mirror 8
## 7572 DailyMailUK 2020-01-07T14:51:04.000Z Daily Mail U.K. 1
## 7573 TheSun 2020-01-07T14:50:00.000Z The Sun 39
## 7574 thetimes 2020-01-07T14:49:46.000Z The Times 12
## 7575 EveningStandard 2020-01-07T14:49:44.000Z Evening Standard 0
## 7576 DailyMirror 2020-01-07T14:48:00.000Z The Mirror 10
## 7577 TheSun 2020-01-07T14:47:40.000Z The Sun 117
## 7578 guardian 2020-01-07T14:46:49.000Z The Guardian 40
## 7579 guardian 2020-01-07T14:46:48.000Z The Guardian 2
## 7580 guardian 2020-01-07T14:46:46.000Z The Guardian 32
## 7581 guardian 2020-01-07T14:46:45.000Z The Guardian 8
## 7582 guardian 2020-01-07T14:46:36.000Z The Guardian 22
## 7583 DailyMirror 2020-01-07T14:46:00.000Z The Mirror 0
## 7584 DailyMirror 2020-01-07T14:43:55.000Z The Mirror 3
## 7585 DailyMirror 2020-01-07T14:42:54.000Z The Mirror 3
## 7586 TheSun 2020-01-07T14:42:17.000Z The Sun 4
## 7587 Telegraph 2020-01-07T14:42:08.000Z The Telegraph 21
## 7588 DailyMirror 2020-01-07T14:41:00.000Z The Mirror 3
## 7589 EveningStandard 2020-01-07T14:40:22.000Z Evening Standard 0
## 7590 DailyMailUK 2020-01-07T14:40:05.000Z Daily Mail U.K. 3
## 7591 TheSun 2020-01-07T14:40:00.000Z The Sun 9
## 7592 EveningStandard 2020-01-07T14:37:24.000Z Evening Standard 1
## 7593 DailyMirror 2020-01-07T14:36:00.000Z The Mirror 1
## 7594 guardian 2020-01-07T14:35:23.000Z The Guardian 35
## 7595 DailyMirror 2020-01-07T14:35:00.000Z The Mirror 2
## 7596 TheSun 2020-01-07T14:32:27.000Z The Sun 0
## 7597 DailyMirror 2020-01-07T14:32:00.000Z The Mirror 2
## 7598 DailyMirror 2020-01-07T14:31:17.000Z The Mirror 3
## 7599 EveningStandard 2020-01-07T14:30:28.000Z Evening Standard 34
## 7600 MetroUK 2020-01-07T14:30:10.000Z Metro 20
## 7601 DailyMailUK 2020-01-07T14:30:05.000Z Daily Mail U.K. 11
## 7602 TheSun 2020-01-07T14:30:00.000Z The Sun 9
## 7603 thetimes 2020-01-07T14:28:41.000Z The Times 5
## 7604 TheSun 2020-01-07T14:27:25.000Z The Sun 0
## 7605 MetroUK 2020-01-07T14:25:27.000Z Metro 16
## 7606 Telegraph 2020-01-07T14:25:17.000Z The Telegraph 5
## 7607 EveningStandard 2020-01-07T14:23:17.000Z Evening Standard 1
## 7608 guardian 2020-01-07T14:22:31.000Z The Guardian 23
## 7609 guardian 2020-01-07T14:22:30.000Z The Guardian 8
## 7610 guardian 2020-01-07T14:22:24.000Z The Guardian 59
## 7611 DailyMirror 2020-01-07T14:21:10.000Z The Mirror 0
## 7612 DailyMailUK 2020-01-07T14:20:59.000Z Daily Mail U.K. 40
## 7613 DailyMailUK 2020-01-07T14:20:05.000Z Daily Mail U.K. 2
## 7614 TheSun 2020-01-07T14:20:00.000Z The Sun 9
## 7615 Telegraph 2020-01-07T14:18:43.000Z The Telegraph 5
## 7616 TheSun 2020-01-07T14:17:14.000Z The Sun 2
## 7617 DailyMailUK 2020-01-07T14:16:17.000Z Daily Mail U.K. 28
## 7618 DailyMailUK 2020-01-07T14:16:06.000Z Daily Mail U.K. 11
## 7619 DailyMirror 2020-01-07T14:16:00.000Z The Mirror 6
## 7620 EveningStandard 2020-01-07T14:15:16.000Z Evening Standard 2
## 7621 DailyMirror 2020-01-07T14:13:55.000Z The Mirror 2
## 7622 TheSun 2020-01-07T14:12:24.000Z The Sun 4
## 7623 DailyMailUK 2020-01-07T14:11:05.000Z Daily Mail U.K. 6
## 7624 guardian 2020-01-07T14:10:21.000Z The Guardian 38
## 7625 TheSun 2020-01-07T14:10:00.000Z The Sun 5
## 7626 EveningStandard 2020-01-07T14:09:27.000Z Evening Standard 0
## 7627 thetimes 2020-01-07T14:08:36.000Z The Times 2
## 7628 DailyMirror 2020-01-07T14:08:00.000Z The Mirror 4
## 7629 MetroUK 2020-01-07T14:07:49.000Z Metro 3
## 7630 TheSun 2020-01-07T14:07:29.000Z The Sun 1
## 7631 DailyMirror 2020-01-07T14:07:18.000Z The Mirror 3
## 7632 MetroUK 2020-01-07T14:06:09.000Z Metro 1
## 7633 DailyMirror 2020-01-07T14:04:26.000Z The Mirror 2
## 7634 TheSun 2020-01-07T14:02:11.000Z The Sun 1
## 7635 DailyMirror 2020-01-07T14:02:00.000Z The Mirror 2
## 7636 MetroUK 2020-01-07T14:00:15.000Z Metro 3
## 7637 EveningStandard 2020-01-07T14:00:14.000Z Evening Standard 1
## 7638 TheSun 2020-01-07T14:00:00.000Z The Sun 6
## 7639 DailyMailUK 2020-01-07T13:59:04.000Z Daily Mail U.K. 1
## 7640 guardian 2020-01-07T13:57:24.000Z The Guardian 9
## 7641 guardian 2020-01-07T13:57:22.000Z The Guardian 1
## 7642 TheSun 2020-01-07T13:57:14.000Z The Sun 0
## 7643 DailyMirror 2020-01-07T13:56:00.000Z The Mirror 3
## 7644 TheSun 2020-01-07T13:55:42.000Z The Sun 3
## 7645 guardian 2020-01-07T13:55:12.000Z The Guardian 2
## 7646 EveningStandard 2020-01-07T13:55:10.000Z Evening Standard 0
## 7647 Telegraph 2020-01-07T13:55:10.000Z The Telegraph 6
## 7648 DailyMirror 2020-01-07T13:55:00.000Z The Mirror 1
## 7649 TheSun 2020-01-07T13:54:22.000Z The Sun 4
## 7650 DailyMirror 2020-01-07T13:54:00.000Z The Mirror 2
## 7651 DailyMirror 2020-01-07T13:53:37.000Z The Mirror 1
## 7652 DailyMirror 2020-01-07T13:53:00.000Z The Mirror 1
## 7653 TheSun 2020-01-07T13:52:50.000Z The Sun 2
## 7654 DailyMirror 2020-01-07T13:52:09.000Z The Mirror 4
## 7655 DailyMirror 2020-01-07T13:51:30.000Z The Mirror 4
## 7656 MetroUK 2020-01-07T13:51:28.000Z Metro 16
## 7657 thetimes 2020-01-07T13:50:52.000Z The Times 3
## 7658 DailyMirror 2020-01-07T13:50:39.000Z The Mirror 2
## 7659 DailyMailUK 2020-01-07T13:50:30.000Z Daily Mail U.K. 9
## 7660 DailyMailUK 2020-01-07T13:50:06.000Z Daily Mail U.K. 2
## 7661 TheSun 2020-01-07T13:50:00.000Z The Sun 22
## 7662 EveningStandard 2020-01-07T13:49:29.000Z Evening Standard 1
## 7663 MetroUK 2020-01-07T13:48:11.000Z Metro 2
## 7664 DailyMirror 2020-01-07T13:47:41.000Z The Mirror 3
## 7665 DailyMirror 2020-01-07T13:46:10.000Z The Mirror 10
## 7666 TheSun 2020-01-07T13:46:00.000Z The Sun 5
## 7667 DailyMirror 2020-01-07T13:46:00.000Z The Mirror 3
## 7668 Telegraph 2020-01-07T13:45:52.000Z The Telegraph 4
## 7669 DailyMirror 2020-01-07T13:45:25.000Z The Mirror 4
## 7670 DailyMirror 2020-01-07T13:45:00.000Z The Mirror 0
## 7671 TheSun 2020-01-07T13:42:51.000Z The Sun 3
## 7672 DailyMailUK 2020-01-07T13:41:20.000Z Daily Mail U.K. 6
## 7673 DailyMailUK 2020-01-07T13:41:07.000Z Daily Mail U.K. 3
## 7674 EveningStandard 2020-01-07T13:40:53.000Z Evening Standard 3
## 7675 TheSun 2020-01-07T13:40:00.000Z The Sun 7
## 7676 guardian 2020-01-07T13:39:55.000Z The Guardian 2
## 7677 DailyMirror 2020-01-07T13:36:00.000Z The Mirror 0
## 7678 DailyMirror 2020-01-07T13:35:55.000Z The Mirror 2
## 7679 DailyMailUK 2020-01-07T13:35:45.000Z Daily Mail U.K. 10
## 7680 DailyMirror 2020-01-07T13:34:56.000Z The Mirror 3
## 7681 guardian 2020-01-07T13:33:18.000Z The Guardian 10
## 7682 TheSun 2020-01-07T13:33:02.000Z The Sun 21
## 7683 EveningStandard 2020-01-07T13:33:02.000Z Evening Standard 10
## 7684 DailyMailUK 2020-01-07T13:31:47.000Z Daily Mail U.K. 0
## 7685 TheSun 2020-01-07T13:30:17.000Z The Sun 6
## 7686 MetroUK 2020-01-07T13:30:17.000Z Metro 5
## 7687 DailyMailUK 2020-01-07T13:30:06.000Z Daily Mail U.K. 0
## 7688 TheSun 2020-01-07T13:30:00.000Z The Sun 7
## 7689 DailyMirror 2020-01-07T13:29:50.000Z The Mirror 2
## 7690 DailyMirror 2020-01-07T13:29:20.000Z The Mirror 9
## 7691 DailyMirror 2020-01-07T13:28:24.000Z The Mirror 0
## 7692 DailyMirror 2020-01-07T13:28:14.000Z The Mirror 32
## 7693 DailyMirror 2020-01-07T13:27:00.000Z The Mirror 0
## 7694 EveningStandard 2020-01-07T13:26:41.000Z Evening Standard 3
## 7695 guardian 2020-01-07T13:25:59.000Z The Guardian 25
## 7696 DailyMirror 2020-01-07T13:25:21.000Z The Mirror 1
## 7697 DailyMirror 2020-01-07T13:24:55.000Z The Mirror 3
## 7698 EveningStandard 2020-01-07T13:24:04.000Z Evening Standard 1
## 7699 DailyMirror 2020-01-07T13:23:52.000Z The Mirror 3
## 7700 TheSun 2020-01-07T13:22:08.000Z The Sun 0
## 7701 DailyMirror 2020-01-07T13:21:40.000Z The Mirror 3
## 7702 DailyMirror 2020-01-07T13:21:00.000Z The Mirror 0
## 7703 DailyMailUK 2020-01-07T13:20:03.000Z Daily Mail U.K. 9
## 7704 TheSun 2020-01-07T13:20:00.000Z The Sun 6
## 7705 TheSun 2020-01-07T13:18:15.000Z The Sun 2
## 7706 EveningStandard 2020-01-07T13:14:40.000Z Evening Standard 0
## 7707 DailyMirror 2020-01-07T13:14:00.000Z The Mirror 3
## 7708 TheSun 2020-01-07T13:12:43.000Z The Sun 4
## 7709 TheSun 2020-01-07T13:10:00.000Z The Sun 4
## 7710 DailyMailUK 2020-01-07T13:09:03.000Z Daily Mail U.K. 5
## 7711 DailyMirror 2020-01-07T13:08:52.000Z The Mirror 3
## 7712 guardian 2020-01-07T13:07:56.000Z The Guardian 2
## 7713 guardian 2020-01-07T13:07:55.000Z The Guardian 12
## 7714 TheSun 2020-01-07T13:07:54.000Z The Sun 1
## 7715 guardian 2020-01-07T13:07:53.000Z The Guardian 35
## 7716 EveningStandard 2020-01-07T13:07:06.000Z Evening Standard 3
## 7717 DailyMirror 2020-01-07T13:06:25.000Z The Mirror 4
## 7718 DailyMirror 2020-01-07T13:05:17.000Z The Mirror 1
## 7719 DailyMirror 2020-01-07T13:05:00.000Z The Mirror 1
## 7720 thetimes 2020-01-07T13:04:44.000Z The Times 3
## 7721 MetroUK 2020-01-07T13:03:31.000Z Metro 6
## 7722 DailyMirror 2020-01-07T13:02:48.000Z The Mirror 31
## 7723 TheSun 2020-01-07T13:02:47.000Z The Sun 1
## 7724 DailyMirror 2020-01-07T13:02:42.000Z The Mirror 0
## 7725 DailyMailUK 2020-01-07T13:01:18.000Z Daily Mail U.K. 8
## 7726 MetroUK 2020-01-07T13:00:08.000Z Metro 36
## 7727 TheSun 2020-01-07T13:00:00.000Z The Sun 13
## 7728 EveningStandard 2020-01-07T13:00:00.000Z Evening Standard 3
## 7729 DailyMirror 2020-01-07T12:59:23.000Z The Mirror 2
## 7730 DailyMailUK 2020-01-07T12:59:02.000Z Daily Mail U.K. 11
## 7731 EveningStandard 2020-01-07T12:58:48.000Z Evening Standard 1
## 7732 DailyMirror 2020-01-07T12:56:07.000Z The Mirror 2
## 7733 DailyMirror 2020-01-07T12:55:17.000Z The Mirror 3
## 7734 TheSun 2020-01-07T12:54:32.000Z The Sun 10
## 7735 DailyMirror 2020-01-07T12:54:01.000Z The Mirror 8
## 7736 DailyMirror 2020-01-07T12:53:16.000Z The Mirror 0
## 7737 TheSun 2020-01-07T12:52:56.000Z The Sun 0
## 7738 guardian 2020-01-07T12:52:56.000Z The Guardian 3
## 7739 TheSun 2020-01-07T12:50:00.000Z The Sun 17
## 7740 EveningStandard 2020-01-07T12:49:57.000Z Evening Standard 0
## 7741 DailyMailUK 2020-01-07T12:49:07.000Z Daily Mail U.K. 3
## 7742 DailyMirror 2020-01-07T12:48:00.000Z The Mirror 4
## 7743 DailyMirror 2020-01-07T12:45:00.000Z The Mirror 1
## 7744 guardian 2020-01-07T12:43:21.000Z The Guardian 1
## 7745 guardian 2020-01-07T12:43:21.000Z The Guardian 36
## 7746 guardian 2020-01-07T12:43:19.000Z The Guardian 25
## 7747 guardian 2020-01-07T12:43:18.000Z The Guardian 4
## 7748 TheSun 2020-01-07T12:42:10.000Z The Sun 0
## 7749 DailyMirror 2020-01-07T12:42:10.000Z The Mirror 2
## 7750 DailyMirror 2020-01-07T12:41:00.000Z The Mirror 2
## 7751 EveningStandard 2020-01-07T12:40:27.000Z Evening Standard 2
## 7752 DailyMailUK 2020-01-07T12:40:08.000Z Daily Mail U.K. 4
## 7753 EveningStandard 2020-01-07T12:40:06.000Z Evening Standard 0
## 7754 TheSun 2020-01-07T12:40:00.000Z The Sun 0
## 7755 DailyMirror 2020-01-07T12:38:12.000Z The Mirror 6
## 7756 guardian 2020-01-07T12:36:10.000Z The Guardian 7
## 7757 TheSun 2020-01-07T12:32:16.000Z The Sun 0
## 7758 DailyMailUK 2020-01-07T12:31:07.000Z Daily Mail U.K. 0
## 7759 EveningStandard 2020-01-07T12:30:17.000Z Evening Standard 5
## 7760 MetroUK 2020-01-07T12:30:13.000Z Metro 15
## 7761 TheSun 2020-01-07T12:30:00.000Z The Sun 6
## 7762 DailyMirror 2020-01-07T12:29:00.000Z The Mirror 2
## 7763 thetimes 2020-01-07T12:28:22.000Z The Times 4
## 7764 TheSun 2020-01-07T12:27:25.000Z The Sun 3
## 7765 guardian 2020-01-07T12:27:24.000Z The Guardian 15
## 7766 DailyMirror 2020-01-07T12:26:36.000Z The Mirror 0
## 7767 EveningStandard 2020-01-07T12:26:24.000Z Evening Standard 2
## 7768 DailyMirror 2020-01-07T12:25:34.000Z The Mirror 3
## 7769 TheSun 2020-01-07T12:23:44.000Z The Sun 3
## 7770 DailyMailUK 2020-01-07T12:21:06.000Z Daily Mail U.K. 18
## 7771 TheSun 2020-01-07T12:20:00.000Z The Sun 17
## 7772 DailyMirror 2020-01-07T12:19:29.000Z The Mirror 5
## 7773 guardian 2020-01-07T12:19:02.000Z The Guardian 18
## 7774 guardian 2020-01-07T12:18:08.000Z The Guardian 4
## 7775 guardian 2020-01-07T12:18:06.000Z The Guardian 32
## 7776 EveningStandard 2020-01-07T12:17:18.000Z Evening Standard 11
## 7777 EveningStandard 2020-01-07T12:17:09.000Z Evening Standard 5
## 7778 DailyMirror 2020-01-07T12:17:01.000Z The Mirror 6
## 7779 DailyMirror 2020-01-07T12:16:00.000Z The Mirror 3
## 7780 DailyMirror 2020-01-07T12:15:11.000Z The Mirror 1
## 7781 DailyMirror 2020-01-07T12:15:00.000Z The Mirror 0
## 7782 DailyMirror 2020-01-07T12:14:53.000Z The Mirror 3
## 7783 thetimes 2020-01-07T12:14:39.000Z The Times 5
## 7784 guardian 2020-01-07T12:14:28.000Z The Guardian 15
## 7785 DailyMirror 2020-01-07T12:12:49.000Z The Mirror 1
## 7786 TheSun 2020-01-07T12:12:31.000Z The Sun 3
## 7787 EveningStandard 2020-01-07T12:11:32.000Z Evening Standard 0
## 7788 DailyMirror 2020-01-07T12:10:21.000Z The Mirror 2
## 7789 DailyMailUK 2020-01-07T12:10:07.000Z Daily Mail U.K. 1
## 7790 TheSun 2020-01-07T12:10:00.000Z The Sun 39
## 7791 DailyMirror 2020-01-07T12:07:42.000Z The Mirror 3
## 7792 TheSun 2020-01-07T12:07:36.000Z The Sun 0
## 7793 MetroUK 2020-01-07T12:05:25.000Z Metro 2
## 7794 guardian 2020-01-07T12:04:43.000Z The Guardian 34
## 7795 MetroUK 2020-01-07T12:04:25.000Z Metro 1
## 7796 TheSun 2020-01-07T12:02:43.000Z The Sun 0
## 7797 EveningStandard 2020-01-07T12:02:01.000Z Evening Standard 3
## 7798 MetroUK 2020-01-07T12:00:08.000Z Metro 1
## 7799 DailyMailUK 2020-01-07T12:00:06.000Z Daily Mail U.K. 2
## 7800 TheSun 2020-01-07T12:00:01.000Z The Sun 4
## 7801 DailyMirror 2020-01-07T11:59:46.000Z The Mirror 1
## 7802 guardian 2020-01-07T11:58:43.000Z The Guardian 7
## 7803 DailyMirror 2020-01-07T11:57:47.000Z The Mirror 1
## 7804 guardian 2020-01-07T11:54:51.000Z The Guardian 11
## 7805 guardian 2020-01-07T11:54:50.000Z The Guardian 1
## 7806 guardian 2020-01-07T11:54:49.000Z The Guardian 31
## 7807 DailyMirror 2020-01-07T11:54:17.000Z The Mirror 4
## 7808 MetroUK 2020-01-07T11:53:27.000Z Metro 3
## 7809 DailyMirror 2020-01-07T11:53:00.000Z The Mirror 0
## 7810 TheSun 2020-01-07T11:52:33.000Z The Sun 3
## 7811 DailyMailUK 2020-01-07T11:51:05.000Z Daily Mail U.K. 4
## 7812 TheSun 2020-01-07T11:50:00.000Z The Sun 16
## 7813 guardian 2020-01-07T11:49:38.000Z The Guardian 5
## 7814 DailyMirror 2020-01-07T11:49:20.000Z The Mirror 2
## 7815 DailyMirror 2020-01-07T11:49:00.000Z The Mirror 1
## 7816 TheSun 2020-01-07T11:47:24.000Z The Sun 2
## 7817 DailyMirror 2020-01-07T11:46:50.000Z The Mirror 0
## 7818 DailyMirror 2020-01-07T11:43:16.000Z The Mirror 5
## 7819 TheSun 2020-01-07T11:42:41.000Z The Sun 4
## 7820 TheSun 2020-01-07T11:42:39.000Z The Sun 3
## 7821 DailyMailUK 2020-01-07T11:42:06.000Z Daily Mail U.K. 13
## 7822 DailyMirror 2020-01-07T11:41:53.000Z The Mirror 1
## 7823 Telegraph 2020-01-07T11:41:42.000Z The Telegraph 10
## 7824 guardian 2020-01-07T11:40:29.000Z The Guardian 17
## 7825 TheSun 2020-01-07T11:40:00.000Z The Sun 2
## 7826 thetimes 2020-01-07T11:39:43.000Z The Times 4
## 7827 EveningStandard 2020-01-07T11:37:45.000Z Evening Standard 1
## 7828 DailyMirror 2020-01-07T11:36:50.000Z The Mirror 2
## 7829 guardian 2020-01-07T11:34:30.000Z The Guardian 8
## 7830 TheSun 2020-01-07T11:32:46.000Z The Sun 3
## 7831 DailyMirror 2020-01-07T11:30:36.000Z The Mirror 0
## 7832 DailyMirror 2020-01-07T11:30:26.000Z The Mirror 3
## 7833 MetroUK 2020-01-07T11:30:10.000Z Metro 7
## 7834 TheSun 2020-01-07T11:30:00.000Z The Sun 1
## 7835 DailyMirror 2020-01-07T11:28:54.000Z The Mirror 4
## 7836 guardian 2020-01-07T11:28:52.000Z The Guardian 1
## 7837 DailyMirror 2020-01-07T11:27:37.000Z The Mirror 2
## 7838 DailyMirror 2020-01-07T11:27:01.000Z The Mirror 2
## 7839 DailyMirror 2020-01-07T11:26:51.000Z The Mirror 4
## 7840 DailyMailUK 2020-01-07T11:25:17.000Z Daily Mail U.K. 8
## 7841 DailyMailUK 2020-01-07T11:24:56.000Z Daily Mail U.K. 17
## 7842 EveningStandard 2020-01-07T11:24:53.000Z Evening Standard 0
## 7843 DailyMirror 2020-01-07T11:22:58.000Z The Mirror 0
## 7844 thetimes 2020-01-07T11:22:56.000Z The Times 3
## 7845 TheSun 2020-01-07T11:22:55.000Z The Sun 6
## 7846 DailyMirror 2020-01-07T11:22:53.000Z The Mirror 4
## 7847 DailyMirror 2020-01-07T11:22:31.000Z The Mirror 2
## 7848 DailyMailUK 2020-01-07T11:21:05.000Z Daily Mail U.K. 11
## 7849 DailyMirror 2020-01-07T11:20:05.000Z The Mirror 3
## 7850 guardian 2020-01-07T11:20:02.000Z The Guardian 19
## 7851 TheSun 2020-01-07T11:20:00.000Z The Sun 9
## 7852 Telegraph 2020-01-07T11:19:02.000Z The Telegraph 6
## 7853 DailyMirror 2020-01-07T11:18:00.000Z The Mirror 17
## 7854 DailyMailUK 2020-01-07T11:17:36.000Z Daily Mail U.K. 11
## 7855 DailyMirror 2020-01-07T11:17:12.000Z The Mirror 5
## 7856 DailyMirror 2020-01-07T11:15:58.000Z The Mirror 9
## 7857 DailyMirror 2020-01-07T11:15:34.000Z The Mirror 3
## 7858 DailyMirror 2020-01-07T11:15:00.000Z The Mirror 0
## 7859 DailyMirror 2020-01-07T11:15:00.000Z The Mirror 1
## 7860 DailyMirror 2020-01-07T23:31:35.000Z The Mirror 59
## 7861 TheSun 2020-01-07T23:30:00.000Z The Sun 3
## 7862 DailyMirror 2020-01-07T23:29:00.000Z The Mirror 2
## 7863 EveningStandard 2020-01-07T23:28:48.000Z Evening Standard 0
## 7864 EveningStandard 2020-01-07T23:25:50.000Z Evening Standard 0
## 7865 guardian 2020-01-07T23:24:52.000Z The Guardian 8
## 7866 TheSun 2020-01-07T23:22:54.000Z The Sun 3
## 7867 EveningStandard 2020-01-07T23:22:53.000Z Evening Standard 2
## 7868 Telegraph 2020-01-07T23:20:57.000Z The Telegraph 19
## 7869 EveningStandard 2020-01-07T23:20:54.000Z Evening Standard 1
## 7870 TheSun 2020-01-07T23:20:00.000Z The Sun 7
## 7871 DailyMailUK 2020-01-07T23:19:06.000Z Daily Mail U.K. 0
## 7872 EveningStandard 2020-01-07T23:18:47.000Z Evening Standard 1
## 7873 TheSun 2020-01-07T23:17:48.000Z The Sun 0
## 7874 guardian 2020-01-07T23:15:53.000Z The Guardian 3
## 7875 guardian 2020-01-07T23:15:52.000Z The Guardian 1
## 7876 guardian 2020-01-07T23:15:50.000Z The Guardian 35
## 7877 EveningStandard 2020-01-07T23:14:49.000Z Evening Standard 0
## 7878 DailyMirror 2020-01-07T23:13:20.000Z The Mirror 4
## 7879 DailyMirror 2020-01-07T23:11:00.000Z The Mirror 1
## 7880 EveningStandard 2020-01-07T23:10:53.000Z Evening Standard 6
## 7881 DailyMirror 2020-01-07T23:10:00.000Z The Mirror 7
## 7882 TheSun 2020-01-07T23:10:00.000Z The Sun 7
## 7883 Telegraph 2020-01-07T23:09:58.000Z The Telegraph 3
## 7884 EveningStandard 2020-01-07T23:08:08.000Z Evening Standard 0
## 7885 DailyMirror 2020-01-07T23:08:00.000Z The Mirror 4
## 7886 DailyMirror 2020-01-07T23:08:00.000Z The Mirror 1
## 7887 TheSun 2020-01-07T23:07:10.000Z The Sun 5
## 7888 DailyMirror 2020-01-07T23:07:00.000Z The Mirror 2
## 7889 guardian 2020-01-07T23:06:30.000Z The Guardian 23
## 7890 EveningStandard 2020-01-07T23:05:11.000Z Evening Standard 0
## 7891 TheSun 2020-01-07T23:02:13.000Z The Sun 5
## 7892 EveningStandard 2020-01-07T23:01:16.000Z Evening Standard 0
## 7893 DailyMailUK 2020-01-07T23:00:09.000Z Daily Mail U.K. 5
## 7894 DailyMirror 2020-01-07T23:00:00.000Z The Mirror 1
## 7895 TheSun 2020-01-07T23:00:00.000Z The Sun 9
## 7896 DailyMirror 2020-01-07T22:59:41.000Z The Mirror 0
## 7897 Telegraph 2020-01-07T22:59:20.000Z The Telegraph 3
## 7898 EveningStandard 2020-01-07T22:59:17.000Z Evening Standard 0
## 7899 guardian 2020-01-07T22:59:16.000Z The Guardian 18
## 7900 TheSun 2020-01-07T22:56:38.000Z The Sun 1
## 7901 DailyMirror 2020-01-07T22:54:40.000Z The Mirror 1
## 7902 TheSun 2020-01-07T22:54:40.000Z The Sun 35
## 7903 EveningStandard 2020-01-07T22:53:26.000Z Evening Standard 0
## 7904 DailyMirror 2020-01-07T22:53:00.000Z The Mirror 3
## 7905 TheSun 2020-01-07T22:52:25.000Z The Sun 4
## 7906 guardian 2020-01-07T22:50:42.000Z The Guardian 35
## 7907 EveningStandard 2020-01-07T22:50:23.000Z Evening Standard 0
## 7908 TheSun 2020-01-07T22:50:00.000Z The Sun 11
## 7909 Telegraph 2020-01-07T22:47:41.000Z The Telegraph 18
## 7910 EveningStandard 2020-01-07T22:47:41.000Z Evening Standard 0
## 7911 DailyMirror 2020-01-07T22:46:51.000Z The Mirror 4
## 7912 TheSun 2020-01-07T22:42:29.000Z The Sun 0
## 7913 EveningStandard 2020-01-07T22:42:28.000Z Evening Standard 2
## 7914 DailyMailUK 2020-01-07T22:40:05.000Z Daily Mail U.K. 1
## 7915 TheSun 2020-01-07T22:40:01.000Z The Sun 8
## 7916 EveningStandard 2020-01-07T22:39:26.000Z Evening Standard 2
## 7917 TheSun 2020-01-07T22:38:58.000Z The Sun 15
## 7918 Telegraph 2020-01-07T22:35:35.000Z The Telegraph 0
## 7919 EveningStandard 2020-01-07T22:35:30.000Z Evening Standard 0
## 7920 guardian 2020-01-07T22:34:32.000Z The Guardian 76
## 7921 EveningStandard 2020-01-07T22:33:32.000Z Evening Standard 1
## 7922 DailyMirror 2020-01-07T22:32:48.000Z The Mirror 1
## 7923 TheSun 2020-01-07T22:32:34.000Z The Sun 3
## 7924 EveningStandard 2020-01-07T22:30:45.000Z Evening Standard 0
## 7925 TheSun 2020-01-07T22:30:00.000Z The Sun 13
## 7926 DailyMirror 2020-01-07T22:29:00.000Z The Mirror 1
## 7927 EveningStandard 2020-01-07T22:27:04.000Z Evening Standard 5
## 7928 guardian 2020-01-07T22:25:19.000Z The Guardian 5
## 7929 Telegraph 2020-01-07T22:24:10.000Z The Telegraph 106
## 7930 EveningStandard 2020-01-07T22:24:06.000Z Evening Standard 0
## 7931 TheSun 2020-01-07T22:23:03.000Z The Sun 7
## 7932 TheSun 2020-01-07T22:22:08.000Z The Sun 2
## 7933 EveningStandard 2020-01-07T22:22:07.000Z Evening Standard 0
## 7934 DailyMirror 2020-01-07T22:21:18.000Z The Mirror 2
## 7935 DailyMirror 2020-01-07T22:21:00.000Z The Mirror 0
## 7936 EveningStandard 2020-01-07T22:20:10.000Z Evening Standard 0
## 7937 TheSun 2020-01-07T22:20:00.000Z The Sun 1
## 7938 DailyMailUK 2020-01-07T22:19:06.000Z Daily Mail U.K. 10
## 7939 DailyMirror 2020-01-07T22:19:00.000Z The Mirror 0
## 7940 TheSun 2020-01-07T22:17:14.000Z The Sun 2
## 7941 TheSun 2020-01-07T22:17:12.000Z The Sun 1
## 7942 DailyMirror 2020-01-07T22:17:00.000Z The Mirror 0
## 7943 EveningStandard 2020-01-07T22:16:13.000Z Evening Standard 1
## 7944 EveningStandard 2020-01-07T22:13:16.000Z Evening Standard 0
## 7945 DailyMailUK 2020-01-07T22:13:11.000Z Daily Mail U.K. 4
## 7946 TheSun 2020-01-07T22:13:09.000Z The Sun 19
## 7947 Telegraph 2020-01-07T22:12:21.000Z The Telegraph 6
## 7948 TheSun 2020-01-07T22:12:17.000Z The Sun 2
## 7949 DailyMirror 2020-01-07T22:12:07.000Z The Mirror 0
## 7950 TheSun 2020-01-07T22:10:00.000Z The Sun 25
## 7951 DailyMirror 2020-01-07T22:10:00.000Z The Mirror 6
## 7952 guardian 2020-01-07T22:09:22.000Z The Guardian 29
## 7953 EveningStandard 2020-01-07T22:09:21.000Z Evening Standard 31
## 7954 DailyMirror 2020-01-07T22:08:56.000Z The Mirror 4
## 7955 TheSun 2020-01-07T22:07:25.000Z The Sun 4
## 7956 TheSun 2020-01-07T22:07:24.000Z The Sun 0
## 7957 EveningStandard 2020-01-07T22:07:23.000Z Evening Standard 0
## 7958 DailyMirror 2020-01-07T22:07:00.000Z The Mirror 0
## 7959 DailyMirror 2020-01-07T22:07:00.000Z The Mirror 2
## 7960 DailyMirror 2020-01-07T22:07:00.000Z The Mirror 1
## 7961 DailyMirror 2020-01-07T22:06:49.000Z The Mirror 1
## 7962 TheSun 2020-01-07T22:05:42.000Z The Sun 56
## 7963 DailyMirror 2020-01-07T22:05:16.000Z The Mirror 4
## 7964 DailyMirror 2020-01-07T22:04:52.000Z The Mirror 3
## 7965 EveningStandard 2020-01-07T22:04:25.000Z Evening Standard 1
## 7966 TheSun 2020-01-07T22:02:29.000Z The Sun 1
## 7967 guardian 2020-01-07T22:01:21.000Z The Guardian 80
## 7968 guardian 2020-01-07T22:00:46.000Z The Guardian 4
## 7969 Telegraph 2020-01-07T22:00:41.000Z The Telegraph 1
## 7970 EveningStandard 2020-01-07T22:00:31.000Z Evening Standard 0
## 7971 MetroUK 2020-01-07T22:00:18.000Z Metro 3
## 7972 DailyMailUK 2020-01-07T22:00:05.000Z Daily Mail U.K. 4
## 7973 TheSun 2020-01-07T22:00:00.000Z The Sun 7
## 7974 DailyMirror 2020-01-07T22:00:00.000Z The Mirror 1
## 7975 guardian 2020-01-07T21:58:53.000Z The Guardian 33
## 7976 DailyMirror 2020-01-07T21:58:07.000Z The Mirror 1
## 7977 TheSun 2020-01-07T21:57:33.000Z The Sun 3
## 7978 guardian 2020-01-07T21:56:35.000Z The Guardian 15
## 7979 EveningStandard 2020-01-07T21:56:33.000Z Evening Standard 0
## 7980 DailyMirror 2020-01-07T21:53:00.000Z The Mirror 0
## 7981 DailyMirror 2020-01-07T21:53:00.000Z The Mirror 8
## 7982 TheSun 2020-01-07T21:52:21.000Z The Sun 5
## 7983 DailyMirror 2020-01-07T21:52:00.000Z The Mirror 3
## 7984 Telegraph 2020-01-07T21:51:17.000Z The Telegraph 13
## 7985 TheSun 2020-01-07T21:50:00.000Z The Sun 344
## 7986 EveningStandard 2020-01-07T21:48:34.000Z Evening Standard 1
## 7987 guardian 2020-01-07T21:48:26.000Z The Guardian 6
## 7988 EveningStandard 2020-01-07T21:47:26.000Z Evening Standard 2
## 7989 TheSun 2020-01-07T21:47:26.000Z The Sun 0
## 7990 Telegraph 2020-01-07T21:47:20.000Z The Telegraph 4
## 7991 DailyMirror 2020-01-07T21:47:00.000Z The Mirror 1
## 7992 DailyMirror 2020-01-07T21:45:00.000Z The Mirror 0
## 7993 DailyMirror 2020-01-07T21:45:00.000Z The Mirror 2
## 7994 DailyMirror 2020-01-07T21:44:00.000Z The Mirror 1
## 7995 TheSun 2020-01-07T21:42:33.000Z The Sun 5
## 7996 EveningStandard 2020-01-07T21:42:32.000Z Evening Standard 8
## 7997 EveningStandard 2020-01-07T21:40:37.000Z Evening Standard 0
## 7998 DailyMailUK 2020-01-07T21:40:07.000Z Daily Mail U.K. 14
## 7999 TheSun 2020-01-07T21:40:00.000Z The Sun 9
## 8000 guardian 2020-01-07T21:39:24.000Z The Guardian 4
## 8001 EveningStandard 2020-01-07T21:37:14.000Z Evening Standard 0
## 8002 DailyMirror 2020-01-07T21:36:00.000Z The Mirror 1
## 8003 Telegraph 2020-01-07T21:35:22.000Z The Telegraph 16
## 8004 EveningStandard 2020-01-07T21:35:17.000Z Evening Standard 5
## 8005 DailyMirror 2020-01-07T21:35:16.000Z The Mirror 4
## 8006 guardian 2020-01-07T21:33:40.000Z The Guardian 8
## 8007 guardian 2020-01-07T21:33:40.000Z The Guardian 2
## 8008 guardian 2020-01-07T21:33:38.000Z The Guardian 24
## 8009 TheSun 2020-01-07T21:33:15.000Z The Sun 4
## 8010 DailyMirror 2020-01-07T21:33:00.000Z The Mirror 1
## 8011 DailyMirror 2020-01-07T21:32:46.000Z The Mirror 4
## 8012 TheSun 2020-01-07T21:32:21.000Z The Sun 2
## 8013 MetroUK 2020-01-07T21:30:16.000Z Metro 8
## 8014 TheSun 2020-01-07T21:30:00.000Z The Sun 15
## 8015 EveningStandard 2020-01-07T21:29:49.000Z Evening Standard 3
## 8016 Telegraph 2020-01-07T21:29:24.000Z The Telegraph 12
## 8017 guardian 2020-01-07T21:29:22.000Z The Guardian 13
## 8018 EveningStandard 2020-01-07T21:29:21.000Z Evening Standard 0
## 8019 DailyMirror 2020-01-07T21:28:58.000Z The Mirror 1
## 8020 DailyMirror 2020-01-07T21:28:08.000Z The Mirror 1
## 8021 TheSun 2020-01-07T21:27:24.000Z The Sun 2
## 8022 EveningStandard 2020-01-07T21:27:23.000Z Evening Standard 1
## 8023 DailyMirror 2020-01-07T21:27:11.000Z The Mirror 2
## 8024 DailyMirror 2020-01-07T21:24:51.000Z The Mirror 5
## 8025 DailyMirror 2020-01-07T21:24:00.000Z The Mirror 4
## 8026 DailyMirror 2020-01-07T21:23:52.000Z The Mirror 6
## 8027 TheSun 2020-01-07T21:22:31.000Z The Sun 28
## 8028 guardian 2020-01-07T21:20:30.000Z The Guardian 2
## 8029 EveningStandard 2020-01-07T21:20:29.000Z Evening Standard 0
## 8030 DailyMailUK 2020-01-07T21:20:09.000Z Daily Mail U.K. 9
## 8031 TheSun 2020-01-07T21:20:00.000Z The Sun 8
## 8032 TheSun 2020-01-07T21:17:31.000Z The Sun 1
## 8033 DailyMirror 2020-01-07T21:16:00.000Z The Mirror 3
## 8034 Telegraph 2020-01-07T21:15:36.000Z The Telegraph 40
## 8035 DailyMirror 2020-01-07T21:15:00.000Z The Mirror 5
## 8036 DailyMirror 2020-01-07T21:15:00.000Z The Mirror 13
## 8037 TheSun 2020-01-07T21:12:37.000Z The Sun 3
## 8038 EveningStandard 2020-01-07T21:12:35.000Z Evening Standard 0
## 8039 guardian 2020-01-07T21:10:10.000Z The Guardian 169
## 8040 DailyMirror 2020-01-07T21:10:00.000Z The Mirror 4
## 8041 DailyMirror 2020-01-07T21:10:00.000Z The Mirror 4
## 8042 TheSun 2020-01-07T21:10:00.000Z The Sun 16
## 8043 guardian 2020-01-07T21:09:52.000Z The Guardian 7
## 8044 DailyMirror 2020-01-07T21:09:41.000Z The Mirror 3
## 8045 TheSun 2020-01-07T21:07:50.000Z The Sun 1
## 8046 DailyMirror 2020-01-07T21:07:00.000Z The Mirror 4
## 8047 DailyMirror 2020-01-07T21:07:00.000Z The Mirror 3
## 8048 TheSun 2020-01-07T21:06:19.000Z The Sun 3
## 8049 DailyMirror 2020-01-07T21:06:00.000Z The Mirror 1
## 8050 DailyMirror 2020-01-07T21:06:00.000Z The Mirror 5
## 8051 DailyMirror 2020-01-07T21:05:38.000Z The Mirror 6
## 8052 TheSun 2020-01-07T21:05:33.000Z The Sun 16
## 8053 DailyMirror 2020-01-07T21:05:00.000Z The Mirror 11
## 8054 EveningStandard 2020-01-07T21:03:54.000Z Evening Standard 1
## 8055 Telegraph 2020-01-07T21:02:59.000Z The Telegraph 9
## 8056 TheSun 2020-01-07T21:02:56.000Z The Sun 10
## 8057 TheSun 2020-01-07T21:02:45.000Z The Sun 1
## 8058 DailyMirror 2020-01-07T21:01:46.000Z The Mirror 2
## 8059 DailyMirror 2020-01-07T21:01:33.000Z The Mirror 5
## 8060 guardian 2020-01-07T21:00:33.000Z The Guardian 46
## 8061 DailyMirror 2020-01-07T21:00:22.000Z The Mirror 5
## 8062 MetroUK 2020-01-07T21:00:13.000Z Metro 2
## 8063 DailyMailUK 2020-01-07T21:00:07.000Z Daily Mail U.K. 1
## 8064 DailyMirror 2020-01-07T21:00:06.000Z The Mirror 2
## 8065 DailyMirror 2020-01-07T21:00:00.000Z The Mirror 0
## 8066 TheSun 2020-01-07T21:00:00.000Z The Sun 25
## 8067 guardian 2020-01-07T21:00:00.000Z The Guardian 8
## 8068 DailyMirror 2020-01-07T20:57:06.000Z The Mirror 5
## 8069 EveningStandard 2020-01-07T20:55:35.000Z Evening Standard 1
## 8070 DailyMirror 2020-01-07T20:54:00.000Z The Mirror 3
## 8071 guardian 2020-01-07T20:53:55.000Z The Guardian 6
## 8072 DailyMirror 2020-01-07T20:53:00.000Z The Mirror 2
## 8073 TheSun 2020-01-07T20:52:45.000Z The Sun 1
## 8074 TheSun 2020-01-07T20:50:00.000Z The Sun 2
## 8075 Telegraph 2020-01-07T20:49:55.000Z The Telegraph 18
## 8076 EveningStandard 2020-01-07T20:49:48.000Z Evening Standard 0
## 8077 DailyMirror 2020-01-07T20:48:00.000Z The Mirror 5
## 8078 DailyMirror 2020-01-07T20:47:50.000Z The Mirror 8
## 8079 DailyMirror 2020-01-07T20:47:47.000Z The Mirror 0
## 8080 DailyMirror 2020-01-07T20:46:00.000Z The Mirror 1
## 8081 guardian 2020-01-07T20:44:36.000Z The Guardian 20
## 8082 guardian 2020-01-07T20:44:35.000Z The Guardian 16
## 8083 DailyMirror 2020-01-07T20:44:00.000Z The Mirror 0
## 8084 DailyMirror 2020-01-07T20:44:00.000Z The Mirror 1
## 8085 TheSun 2020-01-07T20:42:53.000Z The Sun 3
## 8086 EveningStandard 2020-01-07T20:42:53.000Z Evening Standard 1
## 8087 DailyMirror 2020-01-07T20:42:26.000Z The Mirror 1
## 8088 DailyMailUK 2020-01-07T20:40:41.000Z Daily Mail U.K. 2
## 8089 TheSun 2020-01-07T20:40:00.000Z The Sun 3
## 8090 DailyMirror 2020-01-07T20:40:00.000Z The Mirror 0
## 8091 Telegraph 2020-01-07T20:36:04.000Z The Telegraph 20
## 8092 DailyMirror 2020-01-07T20:35:49.000Z The Mirror 1
## 8093 guardian 2020-01-07T20:35:21.000Z The Guardian 40
## 8094 EveningStandard 2020-01-07T20:35:02.000Z Evening Standard 1
## 8095 DailyMirror 2020-01-07T20:33:22.000Z The Mirror 0
## 8096 TheSun 2020-01-07T20:33:04.000Z The Sun 2
## 8097 guardian 2020-01-07T20:32:35.000Z The Guardian 22
## 8098 DailyMirror 2020-01-07T20:32:00.000Z The Mirror 6
## 8099 DailyMirror 2020-01-07T20:31:49.000Z The Mirror 28
## 8100 MetroUK 2020-01-07T20:30:13.000Z Metro 5
## 8101 TheSun 2020-01-07T20:30:00.000Z The Sun 2
## 8102 EveningStandard 2020-01-07T20:28:07.000Z Evening Standard 2
## 8103 guardian 2020-01-07T20:27:44.000Z The Guardian 163
## 8104 TheSun 2020-01-07T20:27:41.000Z The Sun 6
## 8105 guardian 2020-01-07T20:24:13.000Z The Guardian 20
## 8106 DailyMirror 2020-01-07T20:23:00.000Z The Mirror 7
## 8107 DailyMirror 2020-01-07T20:23:00.000Z The Mirror 1
## 8108 Telegraph 2020-01-07T20:22:04.000Z The Telegraph 2
## 8109 EveningStandard 2020-01-07T20:20:05.000Z Evening Standard 0
## 8110 DailyMailUK 2020-01-07T20:20:03.000Z Daily Mail U.K. 10
## 8111 TheSun 2020-01-07T20:20:00.000Z The Sun 1
## 8112 DailyMirror 2020-01-07T20:19:40.000Z The Mirror 4
## 8113 DailyMirror 2020-01-07T20:18:49.000Z The Mirror 1
## 8114 guardian 2020-01-07T20:18:13.000Z The Guardian 3
## 8115 guardian 2020-01-07T20:18:12.000Z The Guardian 1
## 8116 guardian 2020-01-07T20:18:11.000Z The Guardian 8
## 8117 guardian 2020-01-07T20:18:09.000Z The Guardian 6
## 8118 DailyMirror 2020-01-07T20:17:00.000Z The Mirror 1
## 8119 DailyMirror 2020-01-07T20:15:00.000Z The Mirror 2
## 8120 DailyMirror 2020-01-07T20:14:00.000Z The Mirror 2
## 8121 DailyMirror 2020-01-07T20:14:00.000Z The Mirror 0
## 8122 DailyMirror 2020-01-07T20:13:00.000Z The Mirror 2
## 8123 DailyMirror 2020-01-07T20:13:00.000Z The Mirror 2
## 8124 TheSun 2020-01-07T20:12:58.000Z The Sun 10
## 8125 EveningStandard 2020-01-07T20:12:57.000Z Evening Standard 0
## 8126 guardian 2020-01-07T20:11:59.000Z The Guardian 13
## 8127 TheSun 2020-01-07T20:10:00.000Z The Sun 14
## 8128 Telegraph 2020-01-07T20:07:36.000Z The Telegraph 3
## 8129 EveningStandard 2020-01-07T20:06:03.000Z Evening Standard 1
## 8130 DailyMirror 2020-01-07T20:06:00.000Z The Mirror 2
## 8131 DailyMirror 2020-01-07T20:06:00.000Z The Mirror 0
## 8132 thetimes 2020-01-07T20:05:12.000Z The Times 14
## 8133 DailyMirror 2020-01-07T20:05:00.000Z The Mirror 4
## 8134 TheSun 2020-01-07T20:02:13.000Z The Sun 5
## 8135 Telegraph 2020-01-07T20:01:31.000Z The Telegraph 241
## 8136 guardian 2020-01-07T20:00:19.000Z The Guardian 12
## 8137 MetroUK 2020-01-07T20:00:09.000Z Metro 4
## 8138 DailyMailUK 2020-01-07T20:00:08.000Z Daily Mail U.K. 7
## 8139 TheSun 2020-01-07T20:00:01.000Z The Sun 1
## 8140 DailyMirror 2020-01-07T20:00:00.000Z The Mirror 2
## 8141 EveningStandard 2020-01-07T19:58:11.000Z Evening Standard 0
## 8142 DailyMirror 2020-01-07T19:57:26.000Z The Mirror 6
## 8143 Telegraph 2020-01-07T19:54:59.000Z The Telegraph 2
## 8144 guardian 2020-01-07T19:54:59.000Z The Guardian 29
## 8145 guardian 2020-01-07T19:54:57.000Z The Guardian 12
## 8146 guardian 2020-01-07T19:54:56.000Z The Guardian 2
## 8147 Telegraph 2020-01-07T19:53:46.000Z The Telegraph 1
## 8148 TheSun 2020-01-07T19:53:00.000Z The Sun 2
## 8149 guardian 2020-01-07T19:52:19.000Z The Guardian 46
## 8150 EveningStandard 2020-01-07T19:51:02.000Z Evening Standard 0
## 8151 DailyMirror 2020-01-07T19:50:10.000Z The Mirror 1
## 8152 Telegraph 2020-01-07T19:50:03.000Z The Telegraph 3
## 8153 TheSun 2020-01-07T19:50:00.000Z The Sun 3
## 8154 guardian 2020-01-07T19:48:18.000Z The Guardian 16
## 8155 DailyMirror 2020-01-07T19:46:39.000Z The Mirror 3
## 8156 DailyMirror 2020-01-07T19:46:32.000Z The Mirror 4
## 8157 DailyMirror 2020-01-07T19:46:00.000Z The Mirror 4
## 8158 thetimes 2020-01-07T19:45:09.000Z The Times 2
## 8159 EveningStandard 2020-01-07T19:44:09.000Z Evening Standard 0
## 8160 DailyMirror 2020-01-07T19:43:00.000Z The Mirror 2
## 8161 TheSun 2020-01-07T19:42:10.000Z The Sun 5
## 8162 guardian 2020-01-07T19:41:24.000Z The Guardian 13
## 8163 DailyMailUK 2020-01-07T19:40:04.000Z Daily Mail U.K. 18
## 8164 TheSun 2020-01-07T19:40:00.000Z The Sun 7
## 8165 EveningStandard 2020-01-07T19:37:17.000Z Evening Standard 0
## 8166 DailyMirror 2020-01-07T19:36:00.000Z The Mirror 0
## 8167 Telegraph 2020-01-07T19:35:59.000Z The Telegraph 3
## 8168 DailyMirror 2020-01-07T19:34:12.000Z The Mirror 9
## 8169 EveningStandard 2020-01-07T19:33:28.000Z Evening Standard 0
## 8170 DailyMirror 2020-01-07T19:32:50.000Z The Mirror 1
## 8171 DailyMirror 2020-01-07T19:32:38.000Z The Mirror 3
## 8172 TheSun 2020-01-07T19:32:30.000Z The Sun 1
## 8173 guardian 2020-01-07T19:32:21.000Z The Guardian 90
## 8174 EveningStandard 2020-01-07T19:30:26.000Z Evening Standard 0
## 8175 MetroUK 2020-01-07T19:30:15.000Z Metro 5
## 8176 TheSun 2020-01-07T19:30:00.000Z The Sun 28
## 8177 guardian 2020-01-07T19:29:21.000Z The Guardian 15
## 8178 thetimes 2020-01-07T19:28:08.000Z The Times 16
## 8179 guardian 2020-01-07T19:25:07.000Z The Guardian 12
## 8180 DailyMirror 2020-01-07T19:25:00.000Z The Mirror 2
## 8181 DailyMirror 2020-01-07T19:24:00.000Z The Mirror 1
## 8182 DailyMirror 2020-01-07T19:23:53.000Z The Mirror 1
## 8183 TheSun 2020-01-07T19:23:09.000Z The Sun 4
## 8184 DailyMailUK 2020-01-07T19:23:05.000Z Daily Mail U.K. 14
## 8185 DailyMirror 2020-01-07T19:23:00.000Z The Mirror 4
## 8186 DailyMirror 2020-01-07T19:22:00.000Z The Mirror 6
## 8187 EveningStandard 2020-01-07T19:20:09.000Z Evening Standard 2
## 8188 TheSun 2020-01-07T19:20:00.000Z The Sun 10
## 8189 EveningStandard 2020-01-07T19:19:52.000Z Evening Standard 3
## 8190 DailyMirror 2020-01-07T19:15:00.000Z The Mirror 3
## 8191 Telegraph 2020-01-07T19:14:33.000Z The Telegraph 2
## 8192 guardian 2020-01-07T19:14:29.000Z The Guardian 31
## 8193 DailyMirror 2020-01-07T19:14:00.000Z The Mirror 1
## 8194 DailyMirror 2020-01-07T19:14:00.000Z The Mirror 0
## 8195 EveningStandard 2020-01-07T19:13:22.000Z Evening Standard 1
## 8196 TheSun 2020-01-07T19:12:20.000Z The Sun 3
## 8197 thetimes 2020-01-07T19:11:21.000Z The Times 3
## 8198 TheSun 2020-01-07T19:10:00.000Z The Sun 5
## 8199 DailyMirror 2020-01-07T19:10:00.000Z The Mirror 2
## 8200 Telegraph 2020-01-07T19:08:19.000Z The Telegraph 17
## 8201 Telegraph 2020-01-07T19:08:16.000Z The Telegraph 8
## 8202 EveningStandard 2020-01-07T19:06:18.000Z Evening Standard 0
## 8203 DailyMirror 2020-01-07T19:06:00.000Z The Mirror 4
## 8204 DailyMirror 2020-01-07T19:06:00.000Z The Mirror 2
## 8205 DailyMirror 2020-01-07T19:06:00.000Z The Mirror 4
## 8206 DailyMirror 2020-01-07T19:05:00.000Z The Mirror 11
## 8207 DailyMirror 2020-01-07T19:05:00.000Z The Mirror 5
## 8208 guardian 2020-01-07T19:04:10.000Z The Guardian 2
## 8209 TheSun 2020-01-07T19:03:04.000Z The Sun 4
## 8210 Telegraph 2020-01-07T19:00:40.000Z The Telegraph 3
## 8211 EveningStandard 2020-01-07T19:00:35.000Z Evening Standard 1
## 8212 MetroUK 2020-01-07T19:00:18.000Z Metro 3
## 8213 DailyMailUK 2020-01-07T19:00:10.000Z Daily Mail U.K. 6
## 8214 DailyMirror 2020-01-07T19:00:01.000Z The Mirror 3
## 8215 TheSun 2020-01-07T19:00:00.000Z The Sun 12
## 8216 DailyMirror 2020-01-07T19:00:00.000Z The Mirror 27
## 8217 thetimes 2020-01-07T18:54:08.000Z The Times 7
## 8218 guardian 2020-01-07T18:54:06.000Z The Guardian 64
## 8219 EveningStandard 2020-01-07T18:54:06.000Z Evening Standard 2
## 8220 DailyMirror 2020-01-07T18:52:00.000Z The Mirror 9
## 8221 TheSun 2020-01-07T18:50:00.000Z The Sun 5
## 8222 DailyMailUK 2020-01-07T18:49:59.000Z Daily Mail U.K. 20
## 8223 EveningStandard 2020-01-07T18:49:12.000Z Evening Standard 1
## 8224 Telegraph 2020-01-07T18:47:39.000Z The Telegraph 29
## 8225 DailyMirror 2020-01-07T18:46:00.000Z The Mirror 27
## 8226 EveningStandard 2020-01-07T18:43:18.000Z Evening Standard 1
## 8227 Telegraph 2020-01-07T18:43:04.000Z The Telegraph 177
## 8228 TheSun 2020-01-07T18:42:18.000Z The Sun 4
## 8229 DailyMirror 2020-01-07T18:42:00.000Z The Mirror 9
## 8230 guardian 2020-01-07T18:41:49.000Z The Guardian 6
## 8231 guardian 2020-01-07T18:41:49.000Z The Guardian 6
## 8232 guardian 2020-01-07T18:41:48.000Z The Guardian 5
## 8233 guardian 2020-01-07T18:41:47.000Z The Guardian 29
## 8234 guardian 2020-01-07T18:41:47.000Z The Guardian 3
## 8235 guardian 2020-01-07T18:41:45.000Z The Guardian 5
## 8236 guardian 2020-01-07T18:41:44.000Z The Guardian 26
## 8237 guardian 2020-01-07T18:41:42.000Z The Guardian 6
## 8238 guardian 2020-01-07T18:41:41.000Z The Guardian 2
## 8239 guardian 2020-01-07T18:41:39.000Z The Guardian 22
## 8240 DailyMailUK 2020-01-07T18:40:10.000Z Daily Mail U.K. 10
## 8241 TheSun 2020-01-07T18:40:00.000Z The Sun 66
## 8242 EveningStandard 2020-01-07T18:38:24.000Z Evening Standard 2
## 8243 EveningStandard 2020-01-07T18:37:33.000Z Evening Standard 4
## 8244 thetimes 2020-01-07T18:37:25.000Z The Times 27
## 8245 EveningStandard 2020-01-07T18:33:27.000Z Evening Standard 3
## 8246 DailyMirror 2020-01-07T18:32:54.000Z The Mirror 3
## 8247 guardian 2020-01-07T18:32:44.000Z The Guardian 16
## 8248 TheSun 2020-01-07T18:32:32.000Z The Sun 6
## 8249 DailyMirror 2020-01-07T18:32:00.000Z The Mirror 3
## 8250 Telegraph 2020-01-07T18:30:38.000Z The Telegraph 221
## 8251 MetroUK 2020-01-07T18:30:14.000Z Metro 4
## 8252 TheSun 2020-01-07T18:30:00.000Z The Sun 6
## 8253 DailyMirror 2020-01-07T18:29:00.000Z The Mirror 0
## 8254 EveningStandard 2020-01-07T18:27:32.000Z Evening Standard 1
## 8255 guardian 2020-01-07T18:23:38.000Z The Guardian 13
## 8256 DailyMirror 2020-01-07T18:23:00.000Z The Mirror 3
## 8257 TheSun 2020-01-07T18:22:38.000Z The Sun 4
## 8258 EveningStandard 2020-01-07T18:21:40.000Z Evening Standard 0
## 8259 thetimes 2020-01-07T18:20:41.000Z The Times 3
## 8260 DailyMailUK 2020-01-07T18:20:07.000Z Daily Mail U.K. 3
## 8261 Telegraph 2020-01-07T18:20:07.000Z The Telegraph 4
## 8262 TheSun 2020-01-07T18:20:00.000Z The Sun 6
## 8263 DailyMirror 2020-01-07T18:19:50.000Z The Mirror 4
## 8264 DailyMirror 2020-01-07T18:18:01.000Z The Mirror 9
## 8265 guardian 2020-01-07T18:17:26.000Z The Guardian 7
## 8266 guardian 2020-01-07T18:17:26.000Z The Guardian 7
## 8267 guardian 2020-01-07T18:17:24.000Z The Guardian 15
## 8268 DailyMirror 2020-01-07T18:17:00.000Z The Mirror 0
## 8269 EveningStandard 2020-01-07T18:15:57.000Z Evening Standard 0
## 8270 DailyMirror 2020-01-07T18:15:09.000Z The Mirror 8
## 8271 DailyMirror 2020-01-07T18:14:00.000Z The Mirror 3
## 8272 guardian 2020-01-07T18:13:15.000Z The Guardian 13
## 8273 TheSun 2020-01-07T18:12:57.000Z The Sun 1
## 8274 EveningStandard 2020-01-07T18:11:00.000Z Evening Standard 0
## 8275 TheSun 2020-01-07T18:10:00.000Z The Sun 14
## 8276 EveningStandard 2020-01-07T18:08:00.000Z Evening Standard 3
## 8277 DailyMirror 2020-01-07T18:07:00.000Z The Mirror 0
## 8278 Telegraph 2020-01-07T18:06:09.000Z The Telegraph 1
## 8279 DailyMirror 2020-01-07T18:06:00.000Z The Mirror 0
## 8280 DailyMirror 2020-01-07T18:06:00.000Z The Mirror 1
## 8281 DailyMirror 2020-01-07T18:05:00.000Z The Mirror 7
## 8282 DailyMirror 2020-01-07T18:05:00.000Z The Mirror 11
## 8283 DailyMirror 2020-01-07T18:05:00.000Z The Mirror 2
## 8284 thetimes 2020-01-07T18:04:06.000Z The Times 5
## 8285 DailyMirror 2020-01-07T18:03:34.000Z The Mirror 1
## 8286 TheSun 2020-01-07T18:03:06.000Z The Sun 9
## 8287 guardian 2020-01-07T18:03:00.000Z The Guardian 78
## 8288 EveningStandard 2020-01-07T18:02:58.000Z Evening Standard 5
## 8289 EveningStandard 2020-01-07T18:01:06.000Z Evening Standard 0
## 8290 MetroUK 2020-01-07T18:00:04.000Z Metro 1
## 8291 DailyMailUK 2020-01-07T18:00:03.000Z Daily Mail U.K. 16
## 8292 TheSun 2020-01-07T18:00:00.000Z The Sun 10
## 8293 DailyMirror 2020-01-07T17:59:00.000Z The Mirror 0
## 8294 DailyMirror 2020-01-07T17:56:00.000Z The Mirror 3
## 8295 DailyMirror 2020-01-07T17:55:15.000Z The Mirror 4
## 8296 EveningStandard 2020-01-07T17:55:04.000Z Evening Standard 0
## 8297 Telegraph 2020-01-07T17:53:19.000Z The Telegraph 10
## 8298 Telegraph 2020-01-07T17:52:27.000Z The Telegraph 32
## 8299 TheSun 2020-01-07T17:52:23.000Z The Sun 3
## 8300 guardian 2020-01-07T17:50:27.000Z The Guardian 147
## 8301 guardian 2020-01-07T17:50:27.000Z The Guardian 7
## 8302 EveningStandard 2020-01-07T17:50:12.000Z Evening Standard 2
## 8303 TheSun 2020-01-07T17:50:00.000Z The Sun 9
## 8304 thetimes 2020-01-07T17:47:20.000Z The Times 8
## 8305 DailyMirror 2020-01-07T17:46:34.000Z The Mirror 0
## 8306 EveningStandard 2020-01-07T17:46:17.000Z Evening Standard 3
## 8307 DailyMirror 2020-01-07T17:45:25.000Z The Mirror 2
## 8308 DailyMirror 2020-01-07T17:45:17.000Z The Mirror 10
## 8309 guardian 2020-01-07T17:45:00.000Z The Guardian 2
## 8310 guardian 2020-01-07T17:44:34.000Z The Guardian 52
## 8311 TheSun 2020-01-07T17:42:11.000Z The Sun 21
## 8312 EveningStandard 2020-01-07T17:42:10.000Z Evening Standard 0
## 8313 DailyMirror 2020-01-07T17:42:00.000Z The Mirror 0
## 8314 DailyMirror 2020-01-07T17:40:51.000Z The Mirror 6
## 8315 DailyMailUK 2020-01-07T17:40:05.000Z Daily Mail U.K. 3
## 8316 TheSun 2020-01-07T17:40:00.000Z The Sun 2
## 8317 DailyMirror 2020-01-07T17:39:00.000Z The Mirror 3
## 8318 Telegraph 2020-01-07T17:38:21.000Z The Telegraph 13
## 8319 EveningStandard 2020-01-07T17:36:16.000Z Evening Standard 2
## 8320 DailyMirror 2020-01-07T17:36:01.000Z The Mirror 10
## 8321 DailyMirror 2020-01-07T17:36:00.000Z The Mirror 2
## 8322 guardian 2020-01-07T17:35:18.000Z The Guardian 12
## 8323 DailyMirror 2020-01-07T17:34:00.000Z The Mirror 0
## 8324 DailyMirror 2020-01-07T17:33:16.000Z The Mirror 3
## 8325 DailyMirror 2020-01-07T17:32:18.000Z The Mirror 3
## 8326 TheSun 2020-01-07T17:32:11.000Z The Sun 0
## 8327 DailyMirror 2020-01-07T17:32:00.000Z The Mirror 2
## 8328 EveningStandard 2020-01-07T17:31:01.000Z Evening Standard 0
## 8329 MetroUK 2020-01-07T17:30:08.000Z Metro 1
## 8330 thetimes 2020-01-07T17:30:03.000Z The Times 2
## 8331 TheSun 2020-01-07T17:30:00.000Z The Sun 38
## 8332 DailyMirror 2020-01-07T17:28:44.000Z The Mirror 8
## 8333 MetroUK 2020-01-07T17:27:22.000Z Metro 1
## 8334 EveningStandard 2020-01-07T17:26:20.000Z Evening Standard 1
## 8335 DailyMirror 2020-01-07T17:26:15.000Z The Mirror 8
## 8336 guardian 2020-01-07T17:26:00.000Z The Guardian 0
## 8337 guardian 2020-01-07T17:25:58.000Z The Guardian 22
## 8338 guardian 2020-01-07T17:25:57.000Z The Guardian 15
## 8339 Telegraph 2020-01-07T17:24:13.000Z The Telegraph 1
## 8340 DailyMirror 2020-01-07T17:24:00.000Z The Mirror 2
## 8341 DailyMirror 2020-01-07T17:23:23.000Z The Mirror 5
## 8342 EveningStandard 2020-01-07T17:22:09.000Z Evening Standard 1
## 8343 guardian 2020-01-07T17:21:35.000Z The Guardian 9
## 8344 DailyMailUK 2020-01-07T17:20:06.000Z Daily Mail U.K. 2
## 8345 DailyMirror 2020-01-07T17:20:00.000Z The Mirror 0
## 8346 TheSun 2020-01-07T17:20:00.000Z The Sun 7
## 8347 DailyMirror 2020-01-07T17:19:00.000Z The Mirror 2
## 8348 EveningStandard 2020-01-07T17:18:21.000Z Evening Standard 1
## 8349 DailyMirror 2020-01-07T17:14:48.000Z The Mirror 3
## 8350 EveningStandard 2020-01-07T17:13:24.000Z Evening Standard 1
## 8351 DailyMirror 2020-01-07T17:13:00.000Z The Mirror 3
## 8352 thetimes 2020-01-07T17:12:27.000Z The Times 67
## 8353 guardian 2020-01-07T17:11:19.000Z The Guardian 37
## 8354 Telegraph 2020-01-07T17:10:31.000Z The Telegraph 1
## 8355 TheSun 2020-01-07T17:10:00.000Z The Sun 24
## 8356 DailyMirror 2020-01-07T17:10:00.000Z The Mirror 7
## 8357 Telegraph 2020-01-07T17:09:47.000Z The Telegraph 10
## 8358 EveningStandard 2020-01-07T17:08:30.000Z Evening Standard 0
## 8359 guardian 2020-01-08T10:53:26.000Z The Guardian 61
## 8360 TheSun 2020-01-08T10:53:05.000Z The Sun 1
## 8361 EveningStandard 2020-01-08T10:53:04.000Z Evening Standard 0
## 8362 DailyMailUK 2020-01-08T10:51:06.000Z Daily Mail U.K. 13
## 8363 DailyMirror 2020-01-08T10:50:17.000Z The Mirror 3
## 8364 DailyMailUK 2020-01-08T10:50:08.000Z Daily Mail U.K. 4
## 8365 DailyMailUK 2020-01-08T10:48:05.000Z Daily Mail U.K. 4
## 8366 TheSun 2020-01-08T10:47:24.000Z The Sun 41
## 8367 DailyMirror 2020-01-08T10:47:19.000Z The Mirror 12
## 8368 guardian 2020-01-08T10:45:00.000Z The Guardian 5
## 8369 Telegraph 2020-01-08T10:44:43.000Z The Telegraph 16
## 8370 DailyMirror 2020-01-08T10:43:07.000Z The Mirror 6
## 8371 TheSun 2020-01-08T10:42:14.000Z The Sun 0
## 8372 thetimes 2020-01-08T10:42:14.000Z The Times 7
## 8373 DailyMirror 2020-01-08T10:42:00.000Z The Mirror 1
## 8374 EveningStandard 2020-01-08T10:41:16.000Z Evening Standard 1
## 8375 DailyMailUK 2020-01-08T10:41:05.000Z Daily Mail U.K. 9
## 8376 Telegraph 2020-01-08T10:40:54.000Z The Telegraph 5
## 8377 guardian 2020-01-08T10:40:15.000Z The Guardian 4
## 8378 DailyMirror 2020-01-08T10:40:09.000Z The Mirror 5
## 8379 TheSun 2020-01-08T10:40:00.000Z The Sun 7
## 8380 Telegraph 2020-01-08T10:39:43.000Z The Telegraph 39
## 8381 Telegraph 2020-01-08T10:39:26.000Z The Telegraph 6
## 8382 DailyMirror 2020-01-08T10:39:03.000Z The Mirror 12
## 8383 Telegraph 2020-01-08T10:38:27.000Z The Telegraph 4
## 8384 DailyMailUK 2020-01-08T10:38:21.000Z Daily Mail U.K. 14
## 8385 DailyMirror 2020-01-08T10:36:28.000Z The Mirror 2
## 8386 Telegraph 2020-01-08T10:36:23.000Z The Telegraph 22
## 8387 DailyMailUK 2020-01-08T10:35:23.000Z Daily Mail U.K. 11
## 8388 DailyMirror 2020-01-08T10:35:17.000Z The Mirror 5
## 8389 DailyMirror 2020-01-08T10:33:59.000Z The Mirror 2
## 8390 DailyMirror 2020-01-08T10:32:32.000Z The Mirror 1
## 8391 TheSun 2020-01-08T10:32:28.000Z The Sun 3
## 8392 DailyMailUK 2020-01-08T10:32:03.000Z Daily Mail U.K. 8
## 8393 DailyMirror 2020-01-08T10:31:54.000Z The Mirror 5
## 8394 DailyMailUK 2020-01-08T10:31:29.000Z Daily Mail U.K. 16
## 8395 DailyMailUK 2020-01-08T10:30:58.000Z Daily Mail U.K. 11
## 8396 guardian 2020-01-08T10:30:34.000Z The Guardian 4
## 8397 guardian 2020-01-08T10:30:32.000Z The Guardian 1
## 8398 guardian 2020-01-08T10:30:31.000Z The Guardian 3
## 8399 guardian 2020-01-08T10:30:30.000Z The Guardian 11
## 8400 MetroUK 2020-01-08T10:30:06.000Z Metro 6
## 8401 TheSun 2020-01-08T10:30:00.000Z The Sun 2
## 8402 DailyMirror 2020-01-08T10:28:38.000Z The Mirror 6
## 8403 EveningStandard 2020-01-08T10:28:29.000Z Evening Standard 0
## 8404 DailyMirror 2020-01-08T10:28:18.000Z The Mirror 2
## 8405 MetroUK 2020-01-08T10:27:51.000Z Metro 3
## 8406 TheSun 2020-01-08T10:26:49.000Z The Sun 6
## 8407 thetimes 2020-01-08T10:26:35.000Z The Times 5
## 8408 DailyMirror 2020-01-08T10:25:29.000Z The Mirror 2
## 8409 DailyMirror 2020-01-08T10:25:26.000Z The Mirror 8
## 8410 DailyMirror 2020-01-08T10:25:00.000Z The Mirror 2
## 8411 DailyMirror 2020-01-08T10:25:00.000Z The Mirror 2
## 8412 DailyMirror 2020-01-08T10:23:20.000Z The Mirror 3
## 8413 DailyMirror 2020-01-08T10:23:11.000Z The Mirror 0
## 8414 TheSun 2020-01-08T10:22:37.000Z The Sun 4
## 8415 guardian 2020-01-08T10:21:37.000Z The Guardian 1
## 8416 DailyMirror 2020-01-08T10:20:00.000Z The Mirror 5
## 8417 TheSun 2020-01-08T10:20:00.000Z The Sun 29
## 8418 DailyMailUK 2020-01-08T10:18:05.000Z Daily Mail U.K. 6
## 8419 DailyMirror 2020-01-08T10:18:00.000Z The Mirror 5
## 8420 DailyMirror 2020-01-08T10:18:00.000Z The Mirror 0
## 8421 EveningStandard 2020-01-08T10:14:42.000Z Evening Standard 0
## 8422 DailyMirror 2020-01-08T10:14:20.000Z The Mirror 5
## 8423 TheSun 2020-01-08T10:14:02.000Z The Sun 2
## 8424 DailyMailUK 2020-01-08T10:13:22.000Z Daily Mail U.K. 22
## 8425 TheSun 2020-01-08T10:12:44.000Z The Sun 1
## 8426 DailyMirror 2020-01-08T10:12:18.000Z The Mirror 2
## 8427 guardian 2020-01-08T10:11:58.000Z The Guardian 2
## 8428 DailyMailUK 2020-01-08T10:11:41.000Z Daily Mail U.K. 16
## 8429 MetroUK 2020-01-08T10:11:00.000Z Metro 4
## 8430 DailyMailUK 2020-01-08T10:10:08.000Z Daily Mail U.K. 31
## 8431 TheSun 2020-01-08T10:10:00.000Z The Sun 6
## 8432 Telegraph 2020-01-08T10:09:34.000Z The Telegraph 11
## 8433 DailyMirror 2020-01-08T10:06:47.000Z The Mirror 3
## 8434 DailyMirror 2020-01-08T10:06:30.000Z The Mirror 6
## 8435 DailyMirror 2020-01-08T10:06:00.000Z The Mirror 3
## 8436 guardian 2020-01-08T10:05:45.000Z The Guardian 389
## 8437 TheSun 2020-01-08T10:02:49.000Z The Sun 1
## 8438 guardian 2020-01-08T10:02:23.000Z The Guardian 12
## 8439 guardian 2020-01-08T10:02:22.000Z The Guardian 51
## 8440 DailyMirror 2020-01-08T10:00:59.000Z The Mirror 2
## 8441 EveningStandard 2020-01-08T10:00:50.000Z Evening Standard 2
## 8442 MetroUK 2020-01-08T10:00:05.000Z Metro 3
## 8443 TheSun 2020-01-08T10:00:00.000Z The Sun 8
## 8444 guardian 2020-01-08T10:00:00.000Z The Guardian 8
## 8445 DailyMailUK 2020-01-08T09:59:05.000Z Daily Mail U.K. 1
## 8446 EveningStandard 2020-01-08T09:55:08.000Z Evening Standard 1
## 8447 DailyMirror 2020-01-08T09:54:26.000Z The Mirror 4
## 8448 DailyMailUK 2020-01-08T09:54:04.000Z Daily Mail U.K. 27
## 8449 DailyMirror 2020-01-08T09:52:50.000Z The Mirror 6
## 8450 TheSun 2020-01-08T09:52:48.000Z The Sun 5
## 8451 DailyMirror 2020-01-08T09:52:24.000Z The Mirror 3
## 8452 DailyMailUK 2020-01-08T09:50:05.000Z Daily Mail U.K. 8
## 8453 TheSun 2020-01-08T09:50:00.000Z The Sun 16
## 8454 EveningStandard 2020-01-08T09:48:53.000Z Evening Standard 0
## 8455 DailyMirror 2020-01-08T09:47:41.000Z The Mirror 12
## 8456 DailyMirror 2020-01-08T09:47:25.000Z The Mirror 9
## 8457 thetimes 2020-01-08T09:46:00.000Z The Times 4
## 8458 DailyMailUK 2020-01-08T09:44:58.000Z Daily Mail U.K. 39
## 8459 TheSun 2020-01-08T09:42:20.000Z The Sun 5
## 8460 DailyMirror 2020-01-08T09:41:58.000Z The Mirror 9
## 8461 DailyMailUK 2020-01-08T09:40:05.000Z Daily Mail U.K. 8
## 8462 TheSun 2020-01-08T09:40:00.000Z The Sun 12
## 8463 TheSun 2020-01-08T09:39:35.000Z The Sun 12
## 8464 guardian 2020-01-08T09:39:05.000Z The Guardian 15
## 8465 guardian 2020-01-08T09:39:03.000Z The Guardian 91
## 8466 DailyMirror 2020-01-08T09:38:56.000Z The Mirror 4
## 8467 DailyMirror 2020-01-08T09:37:22.000Z The Mirror 4
## 8468 TheSun 2020-01-08T09:36:16.000Z The Sun 4
## 8469 EveningStandard 2020-01-08T09:36:05.000Z Evening Standard 2
## 8470 guardian 2020-01-08T09:35:08.000Z The Guardian 12
## 8471 TheSun 2020-01-08T09:32:10.000Z The Sun 5
## 8472 DailyMirror 2020-01-08T09:31:21.000Z The Mirror 1
## 8473 DailyMirror 2020-01-08T09:31:07.000Z The Mirror 2
## 8474 DailyMailUK 2020-01-08T09:30:10.000Z Daily Mail U.K. 12
## 8475 MetroUK 2020-01-08T09:30:08.000Z Metro 6
## 8476 TheSun 2020-01-08T09:30:00.000Z The Sun 73
## 8477 guardian 2020-01-08T09:30:00.000Z The Guardian 1
## 8478 DailyMirror 2020-01-08T09:27:57.000Z The Mirror 3
## 8479 DailyMirror 2020-01-08T09:24:54.000Z The Mirror 77
## 8480 MetroUK 2020-01-08T09:23:37.000Z Metro 8
## 8481 TheSun 2020-01-08T09:23:02.000Z The Sun 2
## 8482 DailyMirror 2020-01-08T09:22:32.000Z The Mirror 4
## 8483 DailyMailUK 2020-01-08T09:21:37.000Z Daily Mail U.K. 18
## 8484 TheSun 2020-01-08T09:21:02.000Z The Sun 1
## 8485 DailyMailUK 2020-01-08T09:20:54.000Z Daily Mail U.K. 4
## 8486 DailyMailUK 2020-01-08T09:20:08.000Z Daily Mail U.K. 0
## 8487 DailyMirror 2020-01-08T09:20:00.000Z The Mirror 3
## 8488 TheSun 2020-01-08T09:20:00.000Z The Sun 1
## 8489 thetimes 2020-01-08T09:19:18.000Z The Times 4
## 8490 EveningStandard 2020-01-08T09:19:07.000Z Evening Standard 0
## 8491 DailyMirror 2020-01-08T09:18:48.000Z The Mirror 3
## 8492 DailyMailUK 2020-01-08T09:17:53.000Z Daily Mail U.K. 3
## 8493 MetroUK 2020-01-08T09:16:17.000Z Metro 5
## 8494 DailyMirror 2020-01-08T09:15:26.000Z The Mirror 6
## 8495 guardian 2020-01-08T09:14:42.000Z The Guardian 0
## 8496 guardian 2020-01-08T09:13:23.000Z The Guardian 17
## 8497 guardian 2020-01-08T09:13:23.000Z The Guardian 24
## 8498 TheSun 2020-01-08T09:12:13.000Z The Sun 7
## 8499 DailyMirror 2020-01-08T09:11:23.000Z The Mirror 7
## 8500 DailyMailUK 2020-01-08T09:11:05.000Z Daily Mail U.K. 20
## 8501 DailyMirror 2020-01-08T09:10:45.000Z The Mirror 2
## 8502 TheSun 2020-01-08T09:10:11.000Z The Sun 19
## 8503 DailyMirror 2020-01-08T09:06:00.000Z The Mirror 1
## 8504 guardian 2020-01-08T09:05:53.000Z The Guardian 10
## 8505 Telegraph 2020-01-08T09:05:00.000Z The Telegraph 8
## 8506 thetimes 2020-01-08T09:04:23.000Z The Times 3
## 8507 DailyMirror 2020-01-08T09:04:00.000Z The Mirror 0
## 8508 TheSun 2020-01-08T09:02:24.000Z The Sun 7
## 8509 EveningStandard 2020-01-08T09:02:24.000Z Evening Standard 1
## 8510 TheSun 2020-01-08T09:00:00.000Z The Sun 4
## 8511 DailyMailUK 2020-01-08T08:59:33.000Z Daily Mail U.K. 17
## 8512 DailyMailUK 2020-01-08T08:59:04.000Z Daily Mail U.K. 0
## 8513 guardian 2020-01-08T08:57:50.000Z The Guardian 38
## 8514 Telegraph 2020-01-08T08:55:26.000Z The Telegraph 2
## 8515 DailyMirror 2020-01-08T08:55:11.000Z The Mirror 0
## 8516 DailyMirror 2020-01-08T08:54:50.000Z The Mirror 2
## 8517 guardian 2020-01-08T08:54:20.000Z The Guardian 9
## 8518 DailyMirror 2020-01-08T08:54:00.000Z The Mirror 1
## 8519 DailyMirror 2020-01-08T08:53:41.000Z The Mirror 6
## 8520 TheSun 2020-01-08T08:52:26.000Z The Sun 4
## 8521 TheSun 2020-01-08T08:52:26.000Z The Sun 2
## 8522 DailyMailUK 2020-01-08T08:51:53.000Z Daily Mail U.K. 5
## 8523 DailyMirror 2020-01-08T08:51:16.000Z The Mirror 4
## 8524 TheSun 2020-01-08T08:50:00.000Z The Sun 22
## 8525 DailyMirror 2020-01-08T08:49:46.000Z The Mirror 2
## 8526 DailyMirror 2020-01-08T08:46:22.000Z The Mirror 4
## 8527 thetimes 2020-01-08T08:45:28.000Z The Times 7
## 8528 DailyMailUK 2020-01-08T08:45:17.000Z Daily Mail U.K. 4
## 8529 DailyMirror 2020-01-08T08:45:03.000Z The Mirror 5
## 8530 EveningStandard 2020-01-08T08:44:59.000Z Evening Standard 1
## 8531 DailyMirror 2020-01-08T08:42:49.000Z The Mirror 4
## 8532 TheSun 2020-01-08T08:42:35.000Z The Sun 23
## 8533 DailyMailUK 2020-01-08T08:41:56.000Z Daily Mail U.K. 7
## 8534 TheSun 2020-01-08T08:41:34.000Z The Sun 8
## 8535 DailyMailUK 2020-01-08T08:41:09.000Z Daily Mail U.K. 25
## 8536 DailyMailUK 2020-01-08T08:40:47.000Z Daily Mail U.K. 1
## 8537 TheSun 2020-01-08T08:40:00.000Z The Sun 6
## 8538 guardian 2020-01-08T08:39:21.000Z The Guardian 21
## 8539 TheSun 2020-01-08T08:36:53.000Z The Sun 3
## 8540 TheSun 2020-01-08T08:36:25.000Z The Sun 3
## 8541 DailyMirror 2020-01-08T08:36:21.000Z The Mirror 14
## 8542 EveningStandard 2020-01-08T08:34:54.000Z Evening Standard 41
## 8543 MetroUK 2020-01-08T08:32:47.000Z Metro 4
## 8544 TheSun 2020-01-08T08:32:29.000Z The Sun 4
## 8545 DailyMailUK 2020-01-08T08:32:25.000Z Daily Mail U.K. 10
## 8546 EveningStandard 2020-01-08T08:31:51.000Z Evening Standard 1
## 8547 MetroUK 2020-01-08T08:30:08.000Z Metro 3
## 8548 TheSun 2020-01-08T08:30:00.000Z The Sun 23
## 8549 Telegraph 2020-01-08T08:28:17.000Z The Telegraph 38
## 8550 MetroUK 2020-01-08T08:28:15.000Z Metro 2
## 8551 DailyMirror 2020-01-08T08:28:09.000Z The Mirror 7
## 8552 TheSun 2020-01-08T08:25:46.000Z The Sun 3
## 8553 guardian 2020-01-08T08:25:22.000Z The Guardian 2
## 8554 guardian 2020-01-08T08:25:22.000Z The Guardian 559
## 8555 guardian 2020-01-08T08:25:21.000Z The Guardian 22
## 8556 Telegraph 2020-01-08T08:23:32.000Z The Telegraph 30
## 8557 MetroUK 2020-01-08T08:23:31.000Z Metro 3
## 8558 DailyMailUK 2020-01-08T08:23:07.000Z Daily Mail U.K. 8
## 8559 TheSun 2020-01-08T08:22:47.000Z The Sun 9
## 8560 DailyMirror 2020-01-08T08:21:52.000Z The Mirror 3
## 8561 DailyMirror 2020-01-08T08:20:10.000Z The Mirror 3
## 8562 TheSun 2020-01-08T08:20:00.000Z The Sun 23
## 8563 Telegraph 2020-01-08T08:19:10.000Z The Telegraph 19
## 8564 Telegraph 2020-01-08T08:17:03.000Z The Telegraph 2
## 8565 DailyMailUK 2020-01-08T08:17:00.000Z Daily Mail U.K. 10
## 8566 EveningStandard 2020-01-08T08:14:42.000Z Evening Standard 0
## 8567 TheSun 2020-01-08T08:14:14.000Z The Sun 9
## 8568 DailyMirror 2020-01-08T08:13:56.000Z The Mirror 2
## 8569 DailyMirror 2020-01-08T08:12:54.000Z The Mirror 4
## 8570 TheSun 2020-01-08T08:12:46.000Z The Sun 68
## 8571 TheSun 2020-01-08T08:10:00.000Z The Sun 5
## 8572 guardian 2020-01-08T08:09:56.000Z The Guardian 11
## 8573 thetimes 2020-01-08T08:09:51.000Z The Times 12
## 8574 EveningStandard 2020-01-08T08:09:28.000Z Evening Standard 1
## 8575 DailyMirror 2020-01-08T08:05:00.000Z The Mirror 1
## 8576 DailyMirror 2020-01-08T08:03:00.000Z The Mirror 2
## 8577 TheSun 2020-01-08T08:02:56.000Z The Sun 7
## 8578 DailyMirror 2020-01-08T08:00:02.000Z The Mirror 6
## 8579 TheSun 2020-01-08T08:00:00.000Z The Sun 14
## 8580 guardian 2020-01-08T07:58:09.000Z The Guardian 17
## 8581 DailyMirror 2020-01-08T07:58:07.000Z The Mirror 4
## 8582 EveningStandard 2020-01-08T07:57:04.000Z Evening Standard 1
## 8583 DailyMirror 2020-01-08T07:54:44.000Z The Mirror 3
## 8584 thetimes 2020-01-08T07:54:07.000Z The Times 3
## 8585 MetroUK 2020-01-08T07:53:31.000Z Metro 1
## 8586 DailyMirror 2020-01-08T07:53:19.000Z The Mirror 8
## 8587 Telegraph 2020-01-08T07:53:13.000Z The Telegraph 10
## 8588 TheSun 2020-01-08T07:52:31.000Z The Sun 1
## 8589 TheSun 2020-01-08T07:52:09.000Z The Sun 14
## 8590 TheSun 2020-01-08T07:50:00.000Z The Sun 12
## 8591 MetroUK 2020-01-08T07:47:46.000Z Metro 2
## 8592 DailyMirror 2020-01-08T07:46:58.000Z The Mirror 5
## 8593 guardian 2020-01-08T07:44:18.000Z The Guardian 24
## 8594 Telegraph 2020-01-08T07:44:09.000Z The Telegraph 1
## 8595 TheSun 2020-01-08T07:42:22.000Z The Sun 7
## 8596 EveningStandard 2020-01-08T07:41:24.000Z Evening Standard 0
## 8597 TheSun 2020-01-08T07:40:00.000Z The Sun 4
## 8598 thetimes 2020-01-08T07:37:12.000Z The Times 27
## 8599 DailyMirror 2020-01-08T07:36:12.000Z The Mirror 15
## 8600 guardian 2020-01-08T07:34:44.000Z The Guardian 57
## 8601 guardian 2020-01-08T07:34:42.000Z The Guardian 46
## 8602 TheSun 2020-01-08T07:32:22.000Z The Sun 7
## 8603 Telegraph 2020-01-08T07:31:34.000Z The Telegraph 35
## 8604 TheSun 2020-01-08T07:30:00.000Z The Sun 7
## 8605 DailyMailUK 2020-01-08T07:29:44.000Z Daily Mail U.K. 31
## 8606 EveningStandard 2020-01-08T07:28:25.000Z Evening Standard 0
## 8607 guardian 2020-01-08T07:27:30.000Z The Guardian 36
## 8608 Telegraph 2020-01-08T07:26:32.000Z The Telegraph 8
## 8609 DailyMirror 2020-01-08T07:26:06.000Z The Mirror 2
## 8610 EveningStandard 2020-01-08T07:24:30.000Z Evening Standard 0
## 8611 TheSun 2020-01-08T07:22:35.000Z The Sun 11
## 8612 EveningStandard 2020-01-08T07:21:18.000Z Evening Standard 1
## 8613 guardian 2020-01-08T07:20:50.000Z The Guardian 66
## 8614 thetimes 2020-01-08T07:20:34.000Z The Times 11
## 8615 EveningStandard 2020-01-08T07:20:32.000Z Evening Standard 1
## 8616 TheSun 2020-01-08T07:20:00.000Z The Sun 5
## 8617 guardian 2020-01-08T07:18:05.000Z The Guardian 23
## 8618 EveningStandard 2020-01-08T07:17:37.000Z Evening Standard 0
## 8619 MetroUK 2020-01-08T07:13:50.000Z Metro 3
## 8620 TheSun 2020-01-08T07:12:43.000Z The Sun 11
## 8621 DailyMailUK 2020-01-08T07:12:29.000Z Daily Mail U.K. 6
## 8622 EveningStandard 2020-01-08T07:12:17.000Z Evening Standard 16
## 8623 guardian 2020-01-08T07:11:59.000Z The Guardian 11
## 8624 guardian 2020-01-08T07:10:46.000Z The Guardian 48
## 8625 EveningStandard 2020-01-08T07:10:45.000Z Evening Standard 2
## 8626 TheSun 2020-01-08T07:10:00.000Z The Sun 10
## 8627 TheSun 2020-01-08T07:07:48.000Z The Sun 3
## 8628 DailyMirror 2020-01-08T07:04:19.000Z The Mirror 8
## 8629 guardian 2020-01-08T07:01:54.000Z The Guardian 35
## 8630 thetimes 2020-01-08T07:00:57.000Z The Times 18
## 8631 EveningStandard 2020-01-08T07:00:55.000Z Evening Standard 1
## 8632 MetroUK 2020-01-08T07:00:09.000Z Metro 5
## 8633 TheSun 2020-01-08T07:00:00.000Z The Sun 1
## 8634 EveningStandard 2020-01-08T06:55:58.000Z Evening Standard 1
## 8635 TheSun 2020-01-08T06:51:55.000Z The Sun 6
## 8636 EveningStandard 2020-01-08T06:51:05.000Z Evening Standard 0
## 8637 guardian 2020-01-08T06:47:30.000Z The Guardian 9
## 8638 guardian 2020-01-08T06:47:29.000Z The Guardian 27
## 8639 EveningStandard 2020-01-08T06:46:06.000Z Evening Standard 0
## 8640 DailyMirror 2020-01-08T06:45:32.000Z The Mirror 0
## 8641 TheSun 2020-01-08T06:42:09.000Z The Sun 6
## 8642 thetimes 2020-01-08T06:40:12.000Z The Times 10
## 8643 EveningStandard 2020-01-08T06:40:12.000Z Evening Standard 1
## 8644 TheSun 2020-01-08T06:40:00.000Z The Sun 7
## 8645 DailyMirror 2020-01-08T06:39:44.000Z The Mirror 12
## 8646 DailyMailUK 2020-01-08T06:39:39.000Z Daily Mail U.K. 54
## 8647 EveningStandard 2020-01-08T06:35:17.000Z Evening Standard 3
## 8648 DailyMirror 2020-01-08T06:34:00.000Z The Mirror 0
## 8649 MetroUK 2020-01-08T06:30:06.000Z Metro 1
## 8650 EveningStandard 2020-01-08T06:28:24.000Z Evening Standard 2
## 8651 guardian 2020-01-08T06:22:42.000Z The Guardian 181
## 8652 guardian 2020-01-08T06:22:40.000Z The Guardian 36
## 8653 guardian 2020-01-08T06:22:39.000Z The Guardian 20
## 8654 guardian 2020-01-08T06:22:38.000Z The Guardian 77
## 8655 TheSun 2020-01-08T06:22:31.000Z The Sun 2
## 8656 TheSun 2020-01-08T06:22:30.000Z The Sun 1
## 8657 thetimes 2020-01-08T06:20:45.000Z The Times 9
## 8658 TheSun 2020-01-08T06:20:00.000Z The Sun 2
## 8659 EveningStandard 2020-01-08T06:19:44.000Z Evening Standard 2
## 8660 EveningStandard 2020-01-08T06:13:51.000Z Evening Standard 0
## 8661 EveningStandard 2020-01-08T06:07:55.000Z Evening Standard 2
## 8662 DailyMailUK 2020-01-08T06:04:42.000Z Daily Mail U.K. 54
## 8663 TheSun 2020-01-08T06:03:03.000Z The Sun 0
## 8664 thetimes 2020-01-08T06:01:01.000Z The Times 4
## 8665 EveningStandard 2020-01-08T06:00:56.000Z Evening Standard 2
## 8666 DailyMirror 2020-01-08T06:00:36.000Z The Mirror 8
## 8667 TheSun 2020-01-08T06:00:00.000Z The Sun 5
## 8668 EveningStandard 2020-01-08T05:54:02.000Z Evening Standard 0
## 8669 DailyMirror 2020-01-08T05:48:14.000Z The Mirror 9
## 8670 EveningStandard 2020-01-08T05:46:10.000Z Evening Standard 1
## 8671 DailyMailUK 2020-01-08T05:42:21.000Z Daily Mail U.K. 48
## 8672 TheSun 2020-01-08T05:42:16.000Z The Sun 3
## 8673 guardian 2020-01-08T05:41:14.000Z The Guardian 11
## 8674 EveningStandard 2020-01-08T05:38:17.000Z Evening Standard 3
## 8675 EveningStandard 2020-01-08T05:31:25.000Z Evening Standard 0
## 8676 EveningStandard 2020-01-08T05:23:31.000Z Evening Standard 0
## 8677 TheSun 2020-01-08T05:22:32.000Z The Sun 2
## 8678 DailyMailUK 2020-01-08T05:20:33.000Z Daily Mail U.K. 58
## 8679 TheSun 2020-01-08T05:20:00.000Z The Sun 19
## 8680 EveningStandard 2020-01-08T05:16:21.000Z Evening Standard 0
## 8681 DailyMailUK 2020-01-08T05:14:49.000Z Daily Mail U.K. 190
## 8682 EveningStandard 2020-01-08T05:08:28.000Z Evening Standard 1
## 8683 Telegraph 2020-01-08T05:05:46.000Z The Telegraph 28
## 8684 DailyMirror 2020-01-08T05:03:34.000Z The Mirror 17
## 8685 TheSun 2020-01-08T05:02:10.000Z The Sun 6
## 8686 EveningStandard 2020-01-08T05:00:25.000Z Evening Standard 1
## 8687 TheSun 2020-01-08T05:00:00.000Z The Sun 5
## 8688 EveningStandard 2020-01-08T04:53:23.000Z Evening Standard 3
## 8689 EveningStandard 2020-01-08T04:47:28.000Z Evening Standard 1
## 8690 TheSun 2020-01-08T04:42:34.000Z The Sun 3
## 8691 guardian 2020-01-08T04:40:54.000Z The Guardian 87
## 8692 TheSun 2020-01-08T04:40:00.000Z The Sun 23
## 8693 EveningStandard 2020-01-08T04:39:37.000Z Evening Standard 1
## 8694 DailyMailUK 2020-01-08T04:34:23.000Z Daily Mail U.K. 33
## 8695 guardian 2020-01-08T04:32:46.000Z The Guardian 14
## 8696 EveningStandard 2020-01-08T04:32:46.000Z Evening Standard 0
## 8697 EveningStandard 2020-01-08T04:24:55.000Z Evening Standard 0
## 8698 TheSun 2020-01-08T04:22:55.000Z The Sun 1
## 8699 TheSun 2020-01-08T04:20:00.000Z The Sun 3
## 8700 EveningStandard 2020-01-08T04:16:59.000Z Evening Standard 0
## 8701 DailyMailUK 2020-01-08T04:12:53.000Z Daily Mail U.K. 65
## 8702 EveningStandard 2020-01-08T04:10:06.000Z Evening Standard 1
## 8703 EveningStandard 2020-01-08T04:03:06.000Z Evening Standard 0
## 8704 TheSun 2020-01-08T04:02:07.000Z The Sun 1
## 8705 TheSun 2020-01-08T04:00:00.000Z The Sun 2
## 8706 EveningStandard 2020-01-08T03:56:13.000Z Evening Standard 1
## 8707 DailyMirror 2020-01-08T03:54:07.000Z The Mirror 3
## 8708 DailyMirror 2020-01-08T03:50:27.000Z The Mirror 1
## 8709 EveningStandard 2020-01-08T03:49:21.000Z Evening Standard 0
## 8710 DailyMirror 2020-01-08T03:48:39.000Z The Mirror 35
## 8711 EveningStandard 2020-01-08T03:42:19.000Z Evening Standard 0
## 8712 TheSun 2020-01-08T03:42:18.000Z The Sun 0
## 8713 guardian 2020-01-08T03:41:19.000Z The Guardian 4
## 8714 TheSun 2020-01-08T03:40:00.000Z The Sun 4
## 8715 DailyMailUK 2020-01-08T03:39:59.000Z Daily Mail U.K. 164
## 8716 EveningStandard 2020-01-08T03:36:16.000Z Evening Standard 1
## 8717 DailyMailUK 2020-01-08T03:34:18.000Z Daily Mail U.K. 18
## 8718 DailyMailUK 2020-01-08T03:33:53.000Z Daily Mail U.K. 15
## 8719 DailyMirror 2020-01-08T03:33:00.000Z The Mirror 1
## 8720 EveningStandard 2020-01-08T03:30:21.000Z Evening Standard 1
## 8721 EveningStandard 2020-01-08T03:25:27.000Z Evening Standard 0
## 8722 guardian 2020-01-08T03:24:52.000Z The Guardian 5
## 8723 TheSun 2020-01-08T03:22:31.000Z The Sun 5
## 8724 TheSun 2020-01-08T03:20:00.000Z The Sun 122
## 8725 EveningStandard 2020-01-08T03:18:35.000Z Evening Standard 0
## 8726 EveningStandard 2020-01-08T03:13:43.000Z Evening Standard 0
## 8727 guardian 2020-01-08T03:10:41.000Z The Guardian 6
## 8728 EveningStandard 2020-01-08T03:07:44.000Z Evening Standard 0
## 8729 TheSun 2020-01-08T03:02:51.000Z The Sun 2
## 8730 EveningStandard 2020-01-08T03:01:53.000Z Evening Standard 0
## 8731 EveningStandard 2020-01-08T02:55:48.000Z Evening Standard 0
## 8732 DailyMirror 2020-01-08T02:55:43.000Z The Mirror 6
## 8733 DailyMirror 2020-01-08T02:53:46.000Z The Mirror 11
## 8734 EveningStandard 2020-01-08T02:49:53.000Z Evening Standard 1
## 8735 EveningStandard 2020-01-08T02:44:47.000Z Evening Standard 0
## 8736 TheSun 2020-01-08T02:42:35.000Z The Sun 2
## 8737 TheSun 2020-01-08T02:40:00.000Z The Sun 12
## 8738 EveningStandard 2020-01-08T02:39:44.000Z Evening Standard 1
## 8739 guardian 2020-01-08T02:39:44.000Z The Guardian 4
## 8740 EveningStandard 2020-01-08T02:34:48.000Z Evening Standard 0
## 8741 EveningStandard 2020-01-08T02:30:52.000Z Evening Standard 1
## 8742 EveningStandard 2020-01-08T02:26:52.000Z Evening Standard 0
## 8743 TheSun 2020-01-08T02:22:57.000Z The Sun 1
## 8744 EveningStandard 2020-01-08T02:22:56.000Z Evening Standard 0
## 8745 DailyMailUK 2020-01-08T02:22:00.000Z Daily Mail U.K. 56
## 8746 TheSun 2020-01-08T02:20:00.000Z The Sun 12
## 8747 EveningStandard 2020-01-08T02:19:00.000Z Evening Standard 2
## 8748 EveningStandard 2020-01-08T02:17:02.000Z Evening Standard 1
## 8749 DailyMirror 2020-01-08T02:16:27.000Z The Mirror 8
## 8750 guardian 2020-01-08T02:13:08.000Z The Guardian 78
## 8751 EveningStandard 2020-01-08T02:13:08.000Z Evening Standard 2
## 8752 EveningStandard 2020-01-08T02:09:11.000Z Evening Standard 0
## 8753 EveningStandard 2020-01-08T02:05:15.000Z Evening Standard 2
## 8754 DailyMailUK 2020-01-08T02:05:07.000Z Daily Mail U.K. 216
## 8755 TheSun 2020-01-08T02:02:19.000Z The Sun 1
## 8756 EveningStandard 2020-01-08T02:02:17.000Z Evening Standard 0
## 8757 TheSun 2020-01-08T02:00:00.000Z The Sun 7
## 8758 EveningStandard 2020-01-08T01:58:17.000Z Evening Standard 0
## 8759 guardian 2020-01-08T01:53:24.000Z The Guardian 135
## 8760 EveningStandard 2020-01-08T01:53:23.000Z Evening Standard 3
## 8761 EveningStandard 2020-01-08T01:46:29.000Z Evening Standard 1
## 8762 guardian 2020-01-08T01:44:06.000Z The Guardian 27
## 8763 TheSun 2020-01-08T01:42:36.000Z The Sun 1
## 8764 EveningStandard 2020-01-08T01:42:33.000Z Evening Standard 0
## 8765 guardian 2020-01-08T01:41:30.000Z The Guardian 70
## 8766 DailyMirror 2020-01-08T01:41:00.000Z The Mirror 6
## 8767 TheSun 2020-01-08T01:40:00.000Z The Sun 13
## 8768 EveningStandard 2020-01-08T01:38:38.000Z Evening Standard 0
## 8769 EveningStandard 2020-01-08T01:33:43.000Z Evening Standard 1
## 8770 guardian 2020-01-08T01:32:44.000Z The Guardian 143
## 8771 EveningStandard 2020-01-08T01:28:47.000Z Evening Standard 1
## 8772 EveningStandard 2020-01-08T01:25:50.000Z Evening Standard 0
## 8773 guardian 2020-01-08T01:23:15.000Z The Guardian 92
## 8774 TheSun 2020-01-08T01:22:55.000Z The Sun 6
## 8775 DailyMirror 2020-01-08T01:21:11.000Z The Mirror 28
## 8776 EveningStandard 2020-01-08T01:20:56.000Z Evening Standard 0
## 8777 TheSun 2020-01-08T01:20:00.000Z The Sun 9
## 8778 guardian 2020-01-08T01:18:58.000Z The Guardian 25
## 8779 EveningStandard 2020-01-08T01:16:59.000Z Evening Standard 0
## 8780 DailyMailUK 2020-01-08T01:15:42.000Z Daily Mail U.K. 17
## 8781 DailyMailUK 2020-01-08T01:14:26.000Z Daily Mail U.K. 32
## 8782 EveningStandard 2020-01-08T01:14:04.000Z Evening Standard 0
## 8783 DailyMirror 2020-01-08T01:10:07.000Z The Mirror 11
## 8784 EveningStandard 2020-01-08T01:09:58.000Z Evening Standard 1
## 8785 guardian 2020-01-08T01:06:02.000Z The Guardian 16
## 8786 EveningStandard 2020-01-08T01:06:01.000Z Evening Standard 0
## 8787 TheSun 2020-01-08T01:02:13.000Z The Sun 2
## 8788 EveningStandard 2020-01-08T01:02:11.000Z Evening Standard 0
## 8789 DailyMirror 2020-01-08T01:00:06.000Z The Mirror 11
## 8790 TheSun 2020-01-08T01:00:00.000Z The Sun 1
## 8791 EveningStandard 2020-01-08T00:59:04.000Z Evening Standard 1
## 8792 DailyMirror 2020-01-08T00:57:50.000Z The Mirror 3
## 8793 EveningStandard 2020-01-08T00:56:07.000Z Evening Standard 1
## 8794 guardian 2020-01-08T00:55:04.000Z The Guardian 106
## 8795 EveningStandard 2020-01-08T00:52:09.000Z Evening Standard 0
## 8796 EveningStandard 2020-01-08T00:50:12.000Z Evening Standard 0
## 8797 guardian 2020-01-08T00:49:15.000Z The Guardian 8
## 8798 EveningStandard 2020-01-08T00:47:15.000Z Evening Standard 3
## 8799 EveningStandard 2020-01-08T00:44:18.000Z Evening Standard 1
## 8800 TheSun 2020-01-08T00:42:20.000Z The Sun 1
## 8801 EveningStandard 2020-01-08T00:41:21.000Z Evening Standard 0
## 8802 DailyMirror 2020-01-08T00:41:00.000Z The Mirror 4
## 8803 TheSun 2020-01-08T00:40:00.000Z The Sun 5
## 8804 guardian 2020-01-08T00:39:22.000Z The Guardian 2
## 8805 EveningStandard 2020-01-08T00:38:24.000Z Evening Standard 0
## 8806 EveningStandard 2020-01-08T00:35:15.000Z Evening Standard 0
## 8807 DailyMirror 2020-01-08T00:33:00.000Z The Mirror 2
## 8808 EveningStandard 2020-01-08T00:32:18.000Z Evening Standard 0
## 8809 EveningStandard 2020-01-08T00:30:12.000Z Evening Standard 1
## 8810 DailyMirror 2020-01-08T00:30:00.000Z The Mirror 2
## 8811 guardian 2020-01-08T00:29:17.000Z The Guardian 3
## 8812 thetimes 2020-01-08T00:28:16.000Z The Times 84
## 8813 EveningStandard 2020-01-08T00:28:13.000Z Evening Standard 0
## 8814 Telegraph 2020-01-08T00:26:53.000Z The Telegraph 28
## 8815 EveningStandard 2020-01-08T00:24:17.000Z Evening Standard 1
## 8816 TheSun 2020-01-08T00:22:20.000Z The Sun 0
## 8817 EveningStandard 2020-01-08T00:22:20.000Z Evening Standard 1
## 8818 EveningStandard 2020-01-08T00:20:22.000Z Evening Standard 1
## 8819 EveningStandard 2020-01-08T00:17:24.000Z Evening Standard 0
## 8820 DailyMirror 2020-01-08T00:14:00.000Z The Mirror 1
## 8821 Telegraph 2020-01-08T00:13:31.000Z The Telegraph 4
## 8822 guardian 2020-01-08T00:13:29.000Z The Guardian 109
## 8823 DailyMailUK 2020-01-08T00:12:03.000Z Daily Mail U.K. 13
## 8824 EveningStandard 2020-01-08T00:11:32.000Z Evening Standard 0
## 8825 DailyMirror 2020-01-08T00:08:00.000Z The Mirror 1
## 8826 TheSun 2020-01-08T00:07:30.000Z The Sun 0
## 8827 EveningStandard 2020-01-08T00:06:31.000Z Evening Standard 0
## 8828 DailyMailUK 2020-01-08T00:04:53.000Z Daily Mail U.K. 83
## 8829 DailyMirror 2020-01-08T00:02:19.000Z The Mirror 14
## 8830 TheSun 2020-01-08T00:02:18.000Z The Sun 1
## 8831 EveningStandard 2020-01-08T00:01:18.000Z Evening Standard 0
## 8832 TheSun 2020-01-08T00:00:00.000Z The Sun 6
## 8833 Telegraph 2020-01-07T23:59:21.000Z The Telegraph 0
## 8834 EveningStandard 2020-01-07T23:58:20.000Z Evening Standard 1
## 8835 EveningStandard 2020-01-07T23:55:22.000Z Evening Standard 0
## 8836 EveningStandard 2020-01-07T23:53:25.000Z Evening Standard 1
## 8837 DailyMirror 2020-01-07T23:53:00.000Z The Mirror 0
## 8838 DailyMirror 2020-01-07T23:51:15.000Z The Mirror 21
## 8839 EveningStandard 2020-01-07T23:50:28.000Z Evening Standard 0
## 8840 guardian 2020-01-07T23:50:08.000Z The Guardian 176
## 8841 TheSun 2020-01-07T23:50:00.000Z The Sun 2
## 8842 guardian 2020-01-07T23:49:29.000Z The Guardian 8
## 8843 TheSun 2020-01-07T23:47:32.000Z The Sun 1
## 8844 EveningStandard 2020-01-07T23:47:32.000Z Evening Standard 0
## 8845 Telegraph 2020-01-07T23:46:35.000Z The Telegraph 7
## 8846 TheSun 2020-01-07T23:42:38.000Z The Sun 3
## 8847 EveningStandard 2020-01-07T23:42:36.000Z Evening Standard 1
## 8848 DailyMirror 2020-01-07T23:41:00.000Z The Mirror 5
## 8849 guardian 2020-01-07T23:40:49.000Z The Guardian 1
## 8850 guardian 2020-01-07T23:40:47.000Z The Guardian 3
## 8851 EveningStandard 2020-01-07T23:40:38.000Z Evening Standard 0
## 8852 TheSun 2020-01-07T23:40:00.000Z The Sun 5
## 8853 EveningStandard 2020-01-07T23:38:39.000Z Evening Standard 0
## 8854 guardian 2020-01-07T23:36:26.000Z The Guardian 686
## 8855 EveningStandard 2020-01-07T23:35:43.000Z Evening Standard 0
## 8856 Telegraph 2020-01-07T23:33:47.000Z The Telegraph 13
## 8857 DailyMirror 2020-01-07T23:33:00.000Z The Mirror 0
## 8858 EveningStandard 2020-01-07T23:32:47.000Z Evening Standard 0
## 8859 guardian 2020-01-08T16:29:02.000Z The Guardian 12
## 8860 DailyMirror 2020-01-08T16:27:51.000Z The Mirror 3
## 8861 Telegraph 2020-01-08T16:25:07.000Z The Telegraph 1
## 8862 EveningStandard 2020-01-08T16:23:13.000Z Evening Standard 1
## 8863 TheSun 2020-01-08T16:22:59.000Z The Sun 2
## 8864 DailyMirror 2020-01-08T16:22:24.000Z The Mirror 11
## 8865 DailyMirror 2020-01-08T16:21:46.000Z The Mirror 4
## 8866 guardian 2020-01-08T16:21:04.000Z The Guardian 38
## 8867 DailyMailUK 2020-01-08T16:21:04.000Z Daily Mail U.K. 6
## 8868 DailyMirror 2020-01-08T16:21:00.000Z The Mirror 11
## 8869 EveningStandard 2020-01-08T16:20:34.000Z Evening Standard 0
## 8870 TheSun 2020-01-08T16:20:00.000Z The Sun 26
## 8871 DailyMirror 2020-01-08T16:18:12.000Z The Mirror 2
## 8872 DailyMirror 2020-01-08T16:17:56.000Z The Mirror 2
## 8873 EveningStandard 2020-01-08T16:17:26.000Z Evening Standard 0
## 8874 EveningStandard 2020-01-08T16:16:37.000Z Evening Standard 0
## 8875 thetimes 2020-01-08T16:16:08.000Z The Times 2
## 8876 DailyMirror 2020-01-08T16:16:06.000Z The Mirror 2
## 8877 EveningStandard 2020-01-08T16:15:45.000Z Evening Standard 0
## 8878 EveningStandard 2020-01-08T16:15:08.000Z Evening Standard 0
## 8879 guardian 2020-01-08T16:14:31.000Z The Guardian 25
## 8880 guardian 2020-01-08T16:14:29.000Z The Guardian 2
## 8881 EveningStandard 2020-01-08T16:14:10.000Z Evening Standard 0
## 8882 DailyMirror 2020-01-08T16:13:01.000Z The Mirror 8
## 8883 TheSun 2020-01-08T16:12:17.000Z The Sun 0
## 8884 Telegraph 2020-01-08T16:11:18.000Z The Telegraph 33
## 8885 guardian 2020-01-08T16:11:16.000Z The Guardian 9
## 8886 DailyMirror 2020-01-08T16:10:39.000Z The Mirror 2
## 8887 DailyMailUK 2020-01-08T16:10:07.000Z Daily Mail U.K. 2
## 8888 DailyMirror 2020-01-08T16:10:05.000Z The Mirror 2
## 8889 TheSun 2020-01-08T16:10:00.000Z The Sun 6
## 8890 DailyMirror 2020-01-08T16:10:00.000Z The Mirror 3
## 8891 DailyMirror 2020-01-08T16:10:00.000Z The Mirror 3
## 8892 DailyMirror 2020-01-08T16:08:00.000Z The Mirror 3
## 8893 DailyMirror 2020-01-08T16:08:00.000Z The Mirror 5
## 8894 EveningStandard 2020-01-08T16:07:11.000Z Evening Standard 1
## 8895 DailyMirror 2020-01-08T16:06:00.000Z The Mirror 2
## 8896 DailyMirror 2020-01-08T16:05:32.000Z The Mirror 8
## 8897 DailyMirror 2020-01-08T16:03:30.000Z The Mirror 4
## 8898 DailyMailUK 2020-01-08T16:03:14.000Z Daily Mail U.K. 88
## 8899 DailyMirror 2020-01-08T16:03:00.000Z The Mirror 7
## 8900 guardian 2020-01-08T16:02:14.000Z The Guardian 33
## 8901 TheSun 2020-01-08T16:02:13.000Z The Sun 4
## 8902 DailyMirror 2020-01-08T16:01:00.000Z The Mirror 1
## 8903 EveningStandard 2020-01-08T16:00:57.000Z Evening Standard 0
## 8904 DailyMirror 2020-01-08T16:00:53.000Z The Mirror 7
## 8905 MetroUK 2020-01-08T16:00:22.000Z Metro 2
## 8906 guardian 2020-01-08T16:00:00.000Z The Guardian 4
## 8907 TheSun 2020-01-08T16:00:00.000Z The Sun 5
## 8908 DailyMailUK 2020-01-08T15:59:08.000Z Daily Mail U.K. 3
## 8909 DailyMirror 2020-01-08T15:59:00.000Z The Mirror 3
## 8910 DailyMirror 2020-01-08T15:58:49.000Z The Mirror 3
## 8911 Telegraph 2020-01-08T15:57:01.000Z The Telegraph 9
## 8912 DailyMirror 2020-01-08T15:56:24.000Z The Mirror 6
## 8913 DailyMirror 2020-01-08T15:55:33.000Z The Mirror 1
## 8914 EveningStandard 2020-01-08T15:54:53.000Z Evening Standard 0
## 8915 DailyMirror 2020-01-08T15:54:16.000Z The Mirror 11
## 8916 DailyMirror 2020-01-08T15:54:05.000Z The Mirror 6
## 8917 DailyMirror 2020-01-08T15:54:04.000Z The Mirror 0
## 8918 DailyMirror 2020-01-08T15:53:27.000Z The Mirror 3
## 8919 DailyMirror 2020-01-08T15:53:20.000Z The Mirror 4
## 8920 TheSun 2020-01-08T15:52:26.000Z The Sun 0
## 8921 DailyMailUK 2020-01-08T15:51:07.000Z Daily Mail U.K. 1
## 8922 guardian 2020-01-08T15:51:06.000Z The Guardian 64
## 8923 DailyMirror 2020-01-08T15:51:00.000Z The Mirror 3
## 8924 DailyMirror 2020-01-08T15:50:00.000Z The Mirror 2
## 8925 TheSun 2020-01-08T15:50:00.000Z The Sun 3
## 8926 EveningStandard 2020-01-08T15:47:01.000Z Evening Standard 0
## 8927 guardian 2020-01-08T15:46:20.000Z The Guardian 22
## 8928 guardian 2020-01-08T15:46:18.000Z The Guardian 14
## 8929 Telegraph 2020-01-08T15:42:49.000Z The Telegraph 6
## 8930 TheSun 2020-01-08T15:42:44.000Z The Sun 0
## 8931 DailyMirror 2020-01-08T15:41:33.000Z The Mirror 2
## 8932 DailyMailUK 2020-01-08T15:40:37.000Z Daily Mail U.K. 109
## 8933 DailyMirror 2020-01-08T15:40:19.000Z The Mirror 7
## 8934 TheSun 2020-01-08T15:40:00.000Z The Sun 3
## 8935 thetimes 2020-01-08T15:39:51.000Z The Times 1
## 8936 EveningStandard 2020-01-08T15:39:49.000Z Evening Standard 0
## 8937 DailyMailUK 2020-01-08T15:38:59.000Z Daily Mail U.K. 9
## 8938 TheSun 2020-01-08T15:36:09.000Z The Sun 24
## 8939 TheSun 2020-01-08T15:32:59.000Z The Sun 1
## 8940 TheSun 2020-01-08T15:32:56.000Z The Sun 1
## 8941 EveningStandard 2020-01-08T15:32:54.000Z Evening Standard 0
## 8942 DailyMirror 2020-01-08T15:32:41.000Z The Mirror 1
## 8943 MetroUK 2020-01-08T15:30:23.000Z Metro 1
## 8944 DailyMailUK 2020-01-08T15:30:03.000Z Daily Mail U.K. 5
## 8945 TheSun 2020-01-08T15:30:00.000Z The Sun 3
## 8946 DailyMirror 2020-01-08T15:28:34.000Z The Mirror 11
## 8947 Telegraph 2020-01-08T15:27:50.000Z The Telegraph 10
## 8948 DailyMirror 2020-01-08T15:26:15.000Z The Mirror 1
## 8949 EveningStandard 2020-01-08T15:25:41.000Z Evening Standard 0
## 8950 guardian 2020-01-08T15:25:24.000Z The Guardian 7
## 8951 guardian 2020-01-08T15:23:00.000Z The Guardian 12
## 8952 TheSun 2020-01-08T15:22:46.000Z The Sun 3
## 8953 DailyMirror 2020-01-08T15:21:00.000Z The Mirror 3
## 8954 DailyMailUK 2020-01-08T15:20:09.000Z Daily Mail U.K. 1
## 8955 DailyMirror 2020-01-08T15:20:06.000Z The Mirror 3
## 8956 TheSun 2020-01-08T15:20:00.000Z The Sun 5
## 8957 guardian 2020-01-08T15:19:59.000Z The Guardian 10
## 8958 EveningStandard 2020-01-08T15:18:48.000Z Evening Standard 1
## 8959 DailyMirror 2020-01-08T15:17:05.000Z The Mirror 15
## 8960 DailyMirror 2020-01-08T15:16:59.000Z The Mirror 5
## 8961 DailyMirror 2020-01-08T15:16:00.000Z The Mirror 4
## 8962 thetimes 2020-01-08T15:13:06.000Z The Times 6
## 8963 TheSun 2020-01-08T15:13:06.000Z The Sun 5
## 8964 Telegraph 2020-01-08T15:12:18.000Z The Telegraph 9
## 8965 EveningStandard 2020-01-08T15:11:52.000Z Evening Standard 0
## 8966 Telegraph 2020-01-08T15:10:52.000Z The Telegraph 1
## 8967 TheSun 2020-01-08T15:10:00.000Z The Sun 15
## 8968 DailyMirror 2020-01-08T15:10:00.000Z The Mirror 3
## 8969 DailyMirror 2020-01-08T15:09:36.000Z The Mirror 11
## 8970 DailyMirror 2020-01-08T15:08:00.000Z The Mirror 4
## 8971 DailyMirror 2020-01-08T15:07:00.000Z The Mirror 0
## 8972 TheSun 2020-01-08T15:06:52.000Z The Sun 18
## 8973 DailyMailUK 2020-01-08T15:06:07.000Z Daily Mail U.K. 1
## 8974 DailyMirror 2020-01-08T15:06:00.000Z The Mirror 3
## 8975 EveningStandard 2020-01-08T15:05:21.000Z Evening Standard 0
## 8976 MetroUK 2020-01-08T15:03:24.000Z Metro 1
## 8977 TheSun 2020-01-08T15:02:12.000Z The Sun 2
## 8978 TheSun 2020-01-08T15:00:20.000Z The Sun 0
## 8979 MetroUK 2020-01-08T15:00:20.000Z Metro 2
## 8980 DailyMirror 2020-01-08T15:00:06.000Z The Mirror 1
## 8981 TheSun 2020-01-08T15:00:00.000Z The Sun 3
## 8982 guardian 2020-01-08T15:00:00.000Z The Guardian 3
## 8983 DailyMailUK 2020-01-08T14:59:09.000Z Daily Mail U.K. 4
## 8984 EveningStandard 2020-01-08T14:58:21.000Z Evening Standard 0
## 8985 DailyMirror 2020-01-08T14:57:30.000Z The Mirror 8
## 8986 EveningStandard 2020-01-08T14:56:14.000Z Evening Standard 0
## 8987 DailyMirror 2020-01-08T14:56:12.000Z The Mirror 7
## 8988 Telegraph 2020-01-08T14:54:51.000Z The Telegraph 33
## 8989 DailyMailUK 2020-01-08T14:53:58.000Z Daily Mail U.K. 29
## 8990 DailyMirror 2020-01-08T14:53:10.000Z The Mirror 33
## 8991 TheSun 2020-01-08T14:52:19.000Z The Sun 78
## 8992 guardian 2020-01-08T14:51:50.000Z The Guardian 6
## 8993 guardian 2020-01-08T14:51:49.000Z The Guardian 17
## 8994 guardian 2020-01-08T14:51:49.000Z The Guardian 3
## 8995 guardian 2020-01-08T14:51:47.000Z The Guardian 19
## 8996 guardian 2020-01-08T14:51:45.000Z The Guardian 150
## 8997 guardian 2020-01-08T14:51:44.000Z The Guardian 3
## 8998 DailyMirror 2020-01-08T14:51:36.000Z The Mirror 5
## 8999 guardian 2020-01-08T14:50:48.000Z The Guardian 11
## 9000 EveningStandard 2020-01-08T14:50:38.000Z Evening Standard 6
## 9001 DailyMailUK 2020-01-08T14:50:07.000Z Daily Mail U.K. 18
## 9002 TheSun 2020-01-08T14:50:00.000Z The Sun 14
## 9003 DailyMirror 2020-01-08T14:47:15.000Z The Mirror 8
## 9004 TheSun 2020-01-08T14:45:37.000Z The Sun 6
## 9005 EveningStandard 2020-01-08T14:45:19.000Z Evening Standard 1
## 9006 Telegraph 2020-01-08T14:44:16.000Z The Telegraph 7
## 9007 Telegraph 2020-01-08T14:44:14.000Z The Telegraph 5
## 9008 Telegraph 2020-01-08T14:44:12.000Z The Telegraph 7
## 9009 Telegraph 2020-01-08T14:44:10.000Z The Telegraph 5
## 9010 Telegraph 2020-01-08T14:44:09.000Z The Telegraph 20
## 9011 MetroUK 2020-01-08T14:43:27.000Z Metro 1
## 9012 DailyMirror 2020-01-08T14:43:11.000Z The Mirror 0
## 9013 Telegraph 2020-01-08T14:42:23.000Z The Telegraph 2
## 9014 guardian 2020-01-08T14:42:21.000Z The Guardian 2
## 9015 DailyMirror 2020-01-08T14:41:47.000Z The Mirror 5
## 9016 DailyMirror 2020-01-08T14:41:15.000Z The Mirror 1
## 9017 DailyMirror 2020-01-08T14:40:55.000Z The Mirror 1
## 9018 DailyMailUK 2020-01-08T14:40:06.000Z Daily Mail U.K. 18
## 9019 DailyMirror 2020-01-08T14:40:00.000Z The Mirror 12
## 9020 TheSun 2020-01-08T14:40:00.000Z The Sun 7
## 9021 DailyMirror 2020-01-08T14:39:31.000Z The Mirror 5
## 9022 EveningStandard 2020-01-08T14:39:12.000Z Evening Standard 0
## 9023 DailyMirror 2020-01-08T14:35:00.000Z The Mirror 2
## 9024 thetimes 2020-01-08T14:34:58.000Z The Times 0
## 9025 guardian 2020-01-08T14:33:50.000Z The Guardian 2
## 9026 Telegraph 2020-01-08T14:33:10.000Z The Telegraph 1
## 9027 TheSun 2020-01-08T14:32:52.000Z The Sun 8
## 9028 EveningStandard 2020-01-08T14:32:51.000Z Evening Standard 0
## 9029 DailyMirror 2020-01-08T14:32:00.000Z The Mirror 1
## 9030 DailyMailUK 2020-01-08T14:31:07.000Z Daily Mail U.K. 2
## 9031 DailyMirror 2020-01-08T14:30:21.000Z The Mirror 3
## 9032 MetroUK 2020-01-08T14:30:14.000Z Metro 19
## 9033 DailyMirror 2020-01-08T14:30:07.000Z The Mirror 2
## 9034 TheSun 2020-01-08T14:30:00.000Z The Sun 18
## 9035 DailyMirror 2020-01-08T14:30:00.000Z The Mirror 4
## 9036 Telegraph 2020-01-08T14:29:59.000Z The Telegraph 2
## 9037 Telegraph 2020-01-08T14:28:55.000Z The Telegraph 6
## 9038 DailyMirror 2020-01-08T14:27:00.000Z The Mirror 2
## 9039 DailyMirror 2020-01-08T14:26:15.000Z The Mirror 2
## 9040 EveningStandard 2020-01-08T14:25:56.000Z Evening Standard 2
## 9041 guardian 2020-01-08T14:25:34.000Z The Guardian 5
## 9042 guardian 2020-01-08T14:25:33.000Z The Guardian 10
## 9043 Telegraph 2020-01-08T14:23:53.000Z The Telegraph 0
## 9044 guardian 2020-01-08T14:20:11.000Z The Guardian 22
## 9045 TheSun 2020-01-08T14:20:00.000Z The Sun 21
## 9046 guardian 2020-01-08T14:19:46.000Z The Guardian 18
## 9047 DailyMailUK 2020-01-08T14:19:05.000Z Daily Mail U.K. 16
## 9048 DailyMirror 2020-01-08T14:18:55.000Z The Mirror 4
## 9049 EveningStandard 2020-01-08T14:18:39.000Z Evening Standard 0
## 9050 DailyMirror 2020-01-08T14:16:00.000Z The Mirror 0
## 9051 DailyMirror 2020-01-08T14:16:00.000Z The Mirror 0
## 9052 Telegraph 2020-01-08T14:14:55.000Z The Telegraph 7
## 9053 DailyMirror 2020-01-08T14:14:43.000Z The Mirror 2
## 9054 Telegraph 2020-01-08T14:14:37.000Z The Telegraph 4
## 9055 thetimes 2020-01-08T14:14:34.000Z The Times 5
## 9056 DailyMirror 2020-01-08T14:12:30.000Z The Mirror 1
## 9057 EveningStandard 2020-01-08T14:11:35.000Z Evening Standard 2
## 9058 DailyMirror 2020-01-08T14:10:48.000Z The Mirror 2
## 9059 guardian 2020-01-08T14:10:39.000Z The Guardian 11
## 9060 DailyMailUK 2020-01-08T14:10:10.000Z Daily Mail U.K. 2
## 9061 TheSun 2020-01-08T14:10:00.000Z The Sun 4
## 9062 DailyMirror 2020-01-08T14:09:00.000Z The Mirror 7
## 9063 Telegraph 2020-01-08T14:08:26.000Z The Telegraph 2
## 9064 DailyMirror 2020-01-08T14:07:00.000Z The Mirror 1
## 9065 Telegraph 2020-01-08T14:06:19.000Z The Telegraph 4
## 9066 EveningStandard 2020-01-08T14:05:39.000Z Evening Standard 0
## 9067 DailyMailUK 2020-01-08T14:05:05.000Z Daily Mail U.K. 4
## 9068 DailyMailUK 2020-01-08T14:04:36.000Z Daily Mail U.K. 10
## 9069 DailyMirror 2020-01-08T14:02:00.000Z The Mirror 0
## 9070 DailyMirror 2020-01-08T14:00:42.000Z The Mirror 1
## 9071 Telegraph 2020-01-08T14:00:35.000Z The Telegraph 10
## 9072 MetroUK 2020-01-08T14:00:21.000Z Metro 0
## 9073 DailyMirror 2020-01-08T14:00:14.000Z The Mirror 0
## 9074 DailyMailUK 2020-01-08T14:00:12.000Z Daily Mail U.K. 4
## 9075 TheSun 2020-01-08T14:00:00.000Z The Sun 3
## 9076 guardian 2020-01-08T14:00:00.000Z The Guardian 5
## 9077 DailyMailUK 2020-01-08T13:59:04.000Z Daily Mail U.K. 2
## 9078 EveningStandard 2020-01-08T13:58:51.000Z Evening Standard 5
## 9079 guardian 2020-01-08T13:58:41.000Z The Guardian 1
## 9080 EveningStandard 2020-01-08T13:58:27.000Z Evening Standard 0
## 9081 DailyMirror 2020-01-08T13:58:21.000Z The Mirror 8
## 9082 DailyMirror 2020-01-08T13:58:11.000Z The Mirror 1
## 9083 DailyMailUK 2020-01-08T13:57:18.000Z Daily Mail U.K. 14
## 9084 Telegraph 2020-01-08T13:54:36.000Z The Telegraph 5
## 9085 DailyMirror 2020-01-08T13:54:17.000Z The Mirror 12
## 9086 EveningStandard 2020-01-08T13:53:32.000Z Evening Standard 0
## 9087 EveningStandard 2020-01-08T13:51:35.000Z Evening Standard 2
## 9088 guardian 2020-01-08T13:50:51.000Z The Guardian 72
## 9089 guardian 2020-01-08T13:50:37.000Z The Guardian 18
## 9090 DailyMailUK 2020-01-08T13:50:07.000Z Daily Mail U.K. 1
## 9091 DailyMirror 2020-01-08T13:50:00.000Z The Mirror 2
## 9092 TheSun 2020-01-08T13:50:00.000Z The Sun 15
## 9093 DailyMirror 2020-01-08T13:49:51.000Z The Mirror 5
## 9094 DailyMailUK 2020-01-08T13:48:24.000Z Daily Mail U.K. 14
## 9095 EveningStandard 2020-01-08T13:44:50.000Z Evening Standard 1
## 9096 DailyMirror 2020-01-08T13:42:39.000Z The Mirror 1
## 9097 thetimes 2020-01-08T13:42:33.000Z The Times 1
## 9098 guardian 2020-01-08T13:41:32.000Z The Guardian 3
## 9099 DailyMailUK 2020-01-08T13:41:05.000Z Daily Mail U.K. 21
## 9100 TheSun 2020-01-08T13:40:00.000Z The Sun 12
## 9101 Telegraph 2020-01-08T13:38:42.000Z The Telegraph 6
## 9102 DailyMirror 2020-01-08T13:35:40.000Z The Mirror 0
## 9103 DailyMirror 2020-01-08T13:35:21.000Z The Mirror 2
## 9104 DailyMirror 2020-01-08T13:35:21.000Z The Mirror 1
## 9105 guardian 2020-01-08T13:34:11.000Z The Guardian 6
## 9106 DailyMirror 2020-01-08T13:33:53.000Z The Mirror 5
## 9107 EveningStandard 2020-01-08T13:33:39.000Z Evening Standard 2
## 9108 Telegraph 2020-01-08T13:32:00.000Z The Telegraph 4
## 9109 DailyMailUK 2020-01-08T13:31:06.000Z Daily Mail U.K. 2
## 9110 DailyMirror 2020-01-08T13:31:00.000Z The Mirror 2
## 9111 guardian 2020-01-08T13:30:49.000Z The Guardian 74
## 9112 MetroUK 2020-01-08T13:30:11.000Z Metro 19
## 9113 TheSun 2020-01-08T13:30:00.000Z The Sun 151
## 9114 guardian 2020-01-08T13:30:00.000Z The Guardian 2
## 9115 DailyMirror 2020-01-08T13:28:32.000Z The Mirror 2
## 9116 DailyMirror 2020-01-08T13:27:05.000Z The Mirror 1
## 9117 thetimes 2020-01-08T13:26:44.000Z The Times 1
## 9118 Telegraph 2020-01-08T13:26:39.000Z The Telegraph 26
## 9119 EveningStandard 2020-01-08T13:25:43.000Z Evening Standard 0
## 9120 TheSun 2020-01-08T13:25:38.000Z The Sun 7
## 9121 MetroUK 2020-01-08T13:24:20.000Z Metro 1
## 9122 Telegraph 2020-01-08T13:23:27.000Z The Telegraph 4
## 9123 TheSun 2020-01-08T13:22:49.000Z The Sun 1
## 9124 DailyMirror 2020-01-08T13:22:21.000Z The Mirror 5
## 9125 DailyMailUK 2020-01-08T13:21:06.000Z Daily Mail U.K. 2
## 9126 DailyMailUK 2020-01-08T13:20:54.000Z Daily Mail U.K. 24
## 9127 guardian 2020-01-08T13:20:51.000Z The Guardian 9
## 9128 EveningStandard 2020-01-08T13:20:11.000Z Evening Standard 20
## 9129 TheSun 2020-01-08T13:20:00.000Z The Sun 23
## 9130 Telegraph 2020-01-08T13:19:00.000Z The Telegraph 5
## 9131 EveningStandard 2020-01-08T13:18:54.000Z Evening Standard 0
## 9132 MetroUK 2020-01-08T13:17:10.000Z Metro 1
## 9133 MetroUK 2020-01-08T13:16:24.000Z Metro 12
## 9134 DailyMirror 2020-01-08T13:15:26.000Z The Mirror 2
## 9135 DailyMirror 2020-01-08T13:13:52.000Z The Mirror 6
## 9136 TheSun 2020-01-08T13:12:39.000Z The Sun 1
## 9137 DailyMirror 2020-01-08T13:11:57.000Z The Mirror 0
## 9138 Telegraph 2020-01-08T13:11:37.000Z The Telegraph 28
## 9139 DailyMailUK 2020-01-08T13:11:06.000Z Daily Mail U.K. 4
## 9140 thetimes 2020-01-08T13:10:43.000Z The Times 13
## 9141 Telegraph 2020-01-08T13:10:34.000Z The Telegraph 270
## 9142 TheSun 2020-01-08T13:10:00.000Z The Sun 6
## 9143 EveningStandard 2020-01-08T13:09:38.000Z Evening Standard 0
## 9144 guardian 2020-01-08T13:09:16.000Z The Guardian 117
## 9145 Telegraph 2020-01-08T13:08:14.000Z The Telegraph 13
## 9146 DailyMirror 2020-01-08T13:08:03.000Z The Mirror 2
## 9147 guardian 2020-01-08T13:07:45.000Z The Guardian 0
## 9148 DailyMirror 2020-01-08T13:06:32.000Z The Mirror 2
## 9149 DailyMirror 2020-01-08T13:06:32.000Z The Mirror 2
## 9150 Telegraph 2020-01-08T13:05:44.000Z The Telegraph 2
## 9151 DailyMirror 2020-01-08T13:05:00.000Z The Mirror 0
## 9152 Telegraph 2020-01-08T13:04:46.000Z The Telegraph 24
## 9153 DailyMirror 2020-01-08T13:04:10.000Z The Mirror 4
## 9154 EveningStandard 2020-01-08T13:03:44.000Z Evening Standard 0
## 9155 TheSun 2020-01-08T13:02:46.000Z The Sun 7
## 9156 DailyMirror 2020-01-08T13:02:00.000Z The Mirror 2
## 9157 DailyMailUK 2020-01-08T13:00:11.000Z Daily Mail U.K. 3
## 9158 MetroUK 2020-01-08T13:00:06.000Z Metro 5
## 9159 TheSun 2020-01-08T13:00:00.000Z The Sun 2
## 9160 guardian 2020-01-08T13:00:00.000Z The Guardian 4
## 9161 DailyMirror 2020-01-08T12:57:46.000Z The Mirror 7
## 9162 guardian 2020-01-08T12:56:24.000Z The Guardian 32
## 9163 Telegraph 2020-01-08T12:56:01.000Z The Telegraph 5
## 9164 thetimes 2020-01-08T12:54:51.000Z The Times 2
## 9165 EveningStandard 2020-01-08T12:54:49.000Z Evening Standard 3
## 9166 DailyMirror 2020-01-08T12:52:57.000Z The Mirror 2
## 9167 TheSun 2020-01-08T12:52:52.000Z The Sun 2
## 9168 TheSun 2020-01-08T12:52:18.000Z The Sun 0
## 9169 Telegraph 2020-01-08T12:50:34.000Z The Telegraph 16
## 9170 Telegraph 2020-01-08T12:50:28.000Z The Telegraph 2
## 9171 DailyMailUK 2020-01-08T12:50:04.000Z Daily Mail U.K. 14
## 9172 TheSun 2020-01-08T12:50:00.000Z The Sun 5
## 9173 DailyMirror 2020-01-08T12:49:23.000Z The Mirror 9
## 9174 guardian 2020-01-08T12:48:36.000Z The Guardian 14
## 9175 EveningStandard 2020-01-08T12:47:39.000Z Evening Standard 0
## 9176 DailyMirror 2020-01-08T12:47:21.000Z The Mirror 2
## 9177 DailyMailUK 2020-01-08T12:46:46.000Z Daily Mail U.K. 17
## 9178 DailyMirror 2020-01-08T12:45:50.000Z The Mirror 4
## 9179 EveningStandard 2020-01-08T12:43:27.000Z Evening Standard 0
## 9180 DailyMirror 2020-01-08T12:43:00.000Z The Mirror 5
## 9181 TheSun 2020-01-08T12:42:29.000Z The Sun 7
## 9182 guardian 2020-01-08T12:42:25.000Z The Guardian 2
## 9183 guardian 2020-01-08T12:42:24.000Z The Guardian 21
## 9184 guardian 2020-01-08T12:40:33.000Z The Guardian 21
## 9185 DailyMailUK 2020-01-08T12:40:09.000Z Daily Mail U.K. 1
## 9186 TheSun 2020-01-08T12:40:00.000Z The Sun 6
## 9187 Telegraph 2020-01-08T12:39:41.000Z The Telegraph 2
## 9188 thetimes 2020-01-08T12:39:33.000Z The Times 3
## 9189 DailyMirror 2020-01-08T12:39:00.000Z The Mirror 18
## 9190 DailyMailUK 2020-01-08T12:38:59.000Z Daily Mail U.K. 5
## 9191 EveningStandard 2020-01-08T12:36:25.000Z Evening Standard 1
## 9192 MetroUK 2020-01-08T12:36:03.000Z Metro 1
## 9193 DailyMirror 2020-01-08T12:35:52.000Z The Mirror 3
## 9194 Telegraph 2020-01-08T12:34:42.000Z The Telegraph 6
## 9195 DailyMirror 2020-01-08T12:34:22.000Z The Mirror 5
## 9196 DailyMirror 2020-01-08T12:33:15.000Z The Mirror 3
## 9197 TheSun 2020-01-08T12:32:35.000Z The Sun 15
## 9198 EveningStandard 2020-01-08T12:32:18.000Z Evening Standard 5
## 9199 DailyMailUK 2020-01-08T12:32:07.000Z Daily Mail U.K. 21
## 9200 EveningStandard 2020-01-08T12:31:28.000Z Evening Standard 0
## 9201 DailyMirror 2020-01-08T12:31:00.000Z The Mirror 2
## 9202 DailyMailUK 2020-01-08T12:30:58.000Z Daily Mail U.K. 36
## 9203 MetroUK 2020-01-08T12:30:07.000Z Metro 7
## 9204 guardian 2020-01-08T12:30:00.000Z The Guardian 4
## 9205 TheSun 2020-01-08T12:30:00.000Z The Sun 48
## 9206 EveningStandard 2020-01-08T12:29:34.000Z Evening Standard 0
## 9207 EveningStandard 2020-01-08T12:29:21.000Z Evening Standard 0
## 9208 EveningStandard 2020-01-08T12:28:44.000Z Evening Standard 7
## 9209 DailyMirror 2020-01-08T12:28:00.000Z The Mirror 9
## 9210 DailyMirror 2020-01-08T12:27:30.000Z The Mirror 3
## 9211 guardian 2020-01-08T12:24:28.000Z The Guardian 37
## 9212 thetimes 2020-01-08T12:23:56.000Z The Times 10
## 9213 TheSun 2020-01-08T12:22:12.000Z The Sun 2
## 9214 TheSun 2020-01-08T12:21:37.000Z The Sun 10
## 9215 DailyMirror 2020-01-08T12:21:23.000Z The Mirror 1
## 9216 DailyMirror 2020-01-08T12:21:17.000Z The Mirror 3
## 9217 DailyMirror 2020-01-08T12:21:09.000Z The Mirror 10
## 9218 Telegraph 2020-01-08T12:20:54.000Z The Telegraph 11
## 9219 DailyMailUK 2020-01-08T12:20:05.000Z Daily Mail U.K. 3
## 9220 TheSun 2020-01-08T12:20:00.000Z The Sun 5
## 9221 DailyMirror 2020-01-08T12:20:00.000Z The Mirror 3
## 9222 EveningStandard 2020-01-08T12:18:42.000Z Evening Standard 1
## 9223 EveningStandard 2020-01-08T12:18:22.000Z Evening Standard 0
## 9224 EveningStandard 2020-01-08T12:16:35.000Z Evening Standard 0
## 9225 EveningStandard 2020-01-08T12:15:47.000Z Evening Standard 11
## 9226 guardian 2020-01-08T12:15:15.000Z The Guardian 4
## 9227 guardian 2020-01-08T12:15:14.000Z The Guardian 16
## 9228 guardian 2020-01-08T12:15:13.000Z The Guardian 14
## 9229 guardian 2020-01-08T12:15:11.000Z The Guardian 3
## 9230 guardian 2020-01-08T12:15:10.000Z The Guardian 3
## 9231 Telegraph 2020-01-08T12:14:47.000Z The Telegraph 4
## 9232 EveningStandard 2020-01-08T12:14:12.000Z Evening Standard 68
## 9233 DailyMirror 2020-01-08T12:13:00.000Z The Mirror 3
## 9234 DailyMirror 2020-01-08T12:12:38.000Z The Mirror 20
## 9235 TheSun 2020-01-08T12:12:17.000Z The Sun 385
## 9236 DailyMailUK 2020-01-08T12:11:18.000Z Daily Mail U.K. 29
## 9237 Telegraph 2020-01-08T12:10:53.000Z The Telegraph 6
## 9238 DailyMirror 2020-01-08T12:10:42.000Z The Mirror 2
## 9239 DailyMailUK 2020-01-08T12:10:10.000Z Daily Mail U.K. 7
## 9240 guardian 2020-01-08T12:10:00.000Z The Guardian 9
## 9241 TheSun 2020-01-08T12:10:00.000Z The Sun 9
## 9242 MetroUK 2020-01-08T12:09:24.000Z Metro 1
## 9243 EveningStandard 2020-01-08T12:09:19.000Z Evening Standard 1
## 9244 thetimes 2020-01-08T12:09:10.000Z The Times 3
## 9245 EveningStandard 2020-01-08T12:09:08.000Z Evening Standard 1
## 9246 DailyMirror 2020-01-08T12:08:55.000Z The Mirror 6
## 9247 guardian 2020-01-08T12:08:11.000Z The Guardian 1
## 9248 EveningStandard 2020-01-08T12:07:08.000Z Evening Standard 0
## 9249 DailyMirror 2020-01-08T12:06:50.000Z The Mirror 4
## 9250 DailyMirror 2020-01-08T12:06:32.000Z The Mirror 10
## 9251 EveningStandard 2020-01-08T12:05:47.000Z Evening Standard 0
## 9252 EveningStandard 2020-01-08T12:04:13.000Z Evening Standard 0
## 9253 DailyMirror 2020-01-08T12:03:37.000Z The Mirror 0
## 9254 MetroUK 2020-01-08T12:02:28.000Z Metro 5
## 9255 TheSun 2020-01-08T12:02:14.000Z The Sun 1
## 9256 DailyMirror 2020-01-08T12:02:00.000Z The Mirror 2
## 9257 Telegraph 2020-01-08T12:01:47.000Z The Telegraph 0
## 9258 DailyMailUK 2020-01-08T12:01:34.000Z Daily Mail U.K. 5
## 9259 DailyMirror 2020-01-08T12:00:55.000Z The Mirror 6
## 9260 Telegraph 2020-01-08T12:00:51.000Z The Telegraph 6
## 9261 guardian 2020-01-08T12:00:34.000Z The Guardian 11
## 9262 MetroUK 2020-01-08T12:00:05.000Z Metro 12
## 9263 TheSun 2020-01-08T12:00:01.000Z The Sun 40
## 9264 DailyMailUK 2020-01-08T11:59:04.000Z Daily Mail U.K. 1
## 9265 DailyMirror 2020-01-08T11:58:56.000Z The Mirror 1
## 9266 DailyMirror 2020-01-08T11:58:48.000Z The Mirror 2
## 9267 EveningStandard 2020-01-08T11:58:00.000Z Evening Standard 0
## 9268 DailyMailUK 2020-01-08T11:57:33.000Z Daily Mail U.K. 35
## 9269 DailyMirror 2020-01-08T11:57:11.000Z The Mirror 116
## 9270 DailyMirror 2020-01-08T11:56:06.000Z The Mirror 2
## 9271 EveningStandard 2020-01-08T11:54:02.000Z Evening Standard 4
## 9272 TheSun 2020-01-08T11:53:00.000Z The Sun 3
## 9273 DailyMirror 2020-01-08T11:52:44.000Z The Mirror 6
## 9274 EveningStandard 2020-01-08T11:52:44.000Z Evening Standard 2
## 9275 guardian 2020-01-08T11:52:02.000Z The Guardian 8
## 9276 EveningStandard 2020-01-08T11:51:58.000Z Evening Standard 0
## 9277 DailyMirror 2020-01-08T11:51:16.000Z The Mirror 4
## 9278 EveningStandard 2020-01-08T11:51:08.000Z Evening Standard 1
## 9279 EveningStandard 2020-01-08T11:50:17.000Z Evening Standard 1
## 9280 thetimes 2020-01-08T11:50:06.000Z The Times 9
## 9281 TheSun 2020-01-08T11:50:00.000Z The Sun 519
## 9282 EveningStandard 2020-01-08T11:49:16.000Z Evening Standard 0
## 9283 DailyMailUK 2020-01-08T11:49:07.000Z Daily Mail U.K. 6
## 9284 EveningStandard 2020-01-08T11:45:22.000Z Evening Standard 0
## 9285 EveningStandard 2020-01-08T11:45:00.000Z Evening Standard 1
## 9286 DailyMirror 2020-01-08T11:45:00.000Z The Mirror 2
## 9287 EveningStandard 2020-01-08T11:43:13.000Z Evening Standard 0
## 9288 EveningStandard 2020-01-08T11:42:46.000Z Evening Standard 0
## 9289 EveningStandard 2020-01-08T11:42:27.000Z Evening Standard 1
## 9290 TheSun 2020-01-08T11:42:12.000Z The Sun 1
## 9291 DailyMailUK 2020-01-08T11:41:05.000Z Daily Mail U.K. 4
## 9292 TheSun 2020-01-08T11:40:00.000Z The Sun 9
## 9293 DailyMirror 2020-01-08T11:39:00.000Z The Mirror 15
## 9294 Telegraph 2020-01-08T11:37:21.000Z The Telegraph 5
## 9295 guardian 2020-01-08T11:37:17.000Z The Guardian 14
## 9296 thetimes 2020-01-08T11:33:22.000Z The Times 5
## 9297 TheSun 2020-01-08T11:32:23.000Z The Sun 1
## 9298 DailyMailUK 2020-01-08T11:31:06.000Z Daily Mail U.K. 0
## 9299 EveningStandard 2020-01-08T11:31:05.000Z Evening Standard 0
## 9300 DailyMirror 2020-01-08T11:31:00.000Z The Mirror 4
## 9301 Telegraph 2020-01-08T11:30:42.000Z The Telegraph 50
## 9302 guardian 2020-01-08T11:30:32.000Z The Guardian 1
## 9303 EveningStandard 2020-01-08T11:30:24.000Z Evening Standard 0
## 9304 MetroUK 2020-01-08T11:30:05.000Z Metro 2
## 9305 TheSun 2020-01-08T11:30:00.000Z The Sun 5
## 9306 MetroUK 2020-01-08T11:28:59.000Z Metro 8
## 9307 DailyMirror 2020-01-08T11:28:33.000Z The Mirror 4
## 9308 TheSun 2020-01-08T11:22:32.000Z The Sun 1
## 9309 DailyMirror 2020-01-08T11:22:18.000Z The Mirror 9
## 9310 guardian 2020-01-08T11:21:47.000Z The Guardian 75
## 9311 Telegraph 2020-01-08T11:21:17.000Z The Telegraph 47
## 9312 DailyMirror 2020-01-08T11:20:45.000Z The Mirror 8
## 9313 DailyMirror 2020-01-08T11:20:13.000Z The Mirror 2
## 9314 TheSun 2020-01-08T11:20:00.000Z The Sun 45
## 9315 guardian 2020-01-08T11:19:28.000Z The Guardian 14
## 9316 guardian 2020-01-08T11:19:27.000Z The Guardian 5
## 9317 DailyMailUK 2020-01-08T11:18:43.000Z Daily Mail U.K. 7
## 9318 DailyMirror 2020-01-08T11:18:29.000Z The Mirror 7
## 9319 EveningStandard 2020-01-08T11:17:55.000Z Evening Standard 10
## 9320 thetimes 2020-01-08T11:17:36.000Z The Times 1
## 9321 DailyMirror 2020-01-08T11:17:30.000Z The Mirror 3
## 9322 DailyMailUK 2020-01-08T11:17:02.000Z Daily Mail U.K. 3
## 9323 DailyMirror 2020-01-08T11:13:30.000Z The Mirror 8
## 9324 guardian 2020-01-08T11:13:27.000Z The Guardian 63
## 9325 DailyMirror 2020-01-08T11:12:54.000Z The Mirror 15
## 9326 TheSun 2020-01-08T11:12:39.000Z The Sun 1
## 9327 DailyMailUK 2020-01-08T11:11:50.000Z Daily Mail U.K. 15
## 9328 DailyMirror 2020-01-08T11:11:35.000Z The Mirror 0
## 9329 DailyMirror 2020-01-08T11:11:23.000Z The Mirror 3
## 9330 DailyMirror 2020-01-08T11:11:00.000Z The Mirror 9
## 9331 DailyMailUK 2020-01-08T11:10:12.000Z Daily Mail U.K. 1
## 9332 TheSun 2020-01-08T11:10:00.000Z The Sun 21
## 9333 MetroUK 2020-01-08T11:09:39.000Z Metro 2
## 9334 DailyMirror 2020-01-08T11:09:07.000Z The Mirror 5
## 9335 DailyMirror 2020-01-08T11:08:44.000Z The Mirror 3
## 9336 DailyMirror 2020-01-08T11:08:18.000Z The Mirror 3
## 9337 DailyMirror 2020-01-08T11:07:47.000Z The Mirror 3
## 9338 DailyMirror 2020-01-08T11:07:00.000Z The Mirror 3
## 9339 DailyMirror 2020-01-08T11:06:00.000Z The Mirror 0
## 9340 DailyMailUK 2020-01-08T11:05:56.000Z Daily Mail U.K. 3
## 9341 EveningStandard 2020-01-08T11:05:47.000Z Evening Standard 3
## 9342 guardian 2020-01-08T11:04:49.000Z The Guardian 42
## 9343 TheSun 2020-01-08T11:03:45.000Z The Sun 14
## 9344 DailyMailUK 2020-01-08T11:03:17.000Z Daily Mail U.K. 21
## 9345 TheSun 2020-01-08T11:02:49.000Z The Sun 9
## 9346 DailyMirror 2020-01-08T11:02:03.000Z The Mirror 5
## 9347 DailyMirror 2020-01-08T11:02:00.000Z The Mirror 2
## 9348 TheSun 2020-01-08T11:01:45.000Z The Sun 5
## 9349 DailyMirror 2020-01-08T11:01:39.000Z The Mirror 4
## 9350 DailyMirror 2020-01-08T11:00:35.000Z The Mirror 11
## 9351 MetroUK 2020-01-08T11:00:12.000Z Metro 3
## 9352 DailyMailUK 2020-01-08T11:00:05.000Z Daily Mail U.K. 12
## 9353 TheSun 2020-01-08T11:00:00.000Z The Sun 3
## 9354 DailyMirror 2020-01-08T10:59:00.000Z The Mirror 2
## 9355 thetimes 2020-01-08T10:57:55.000Z The Times 9
## 9356 thetimes 2020-01-08T10:56:09.000Z The Times 196
## 9357 thetimes 2020-01-08T10:56:03.000Z The Times 16
## 9358 thetimes 2020-01-08T10:53:34.000Z The Times 1
## 9359 EveningStandard 2020-01-08T21:58:24.000Z Evening Standard 0
## 9360 TheSun 2020-01-08T21:56:41.000Z The Sun 8
## 9361 guardian 2020-01-08T21:55:28.000Z The Guardian 9
## 9362 EveningStandard 2020-01-08T21:53:30.000Z Evening Standard 0
## 9363 EveningStandard 2020-01-08T21:52:31.000Z Evening Standard 1
## 9364 TheSun 2020-01-08T21:52:30.000Z The Sun 0
## 9365 DailyMirror 2020-01-08T21:51:00.000Z The Mirror 2
## 9366 DailyMirror 2020-01-08T21:51:00.000Z The Mirror 1
## 9367 TheSun 2020-01-08T21:50:00.000Z The Sun 6
## 9368 DailyMirror 2020-01-08T21:50:00.000Z The Mirror 1
## 9369 Telegraph 2020-01-08T21:48:36.000Z The Telegraph 4
## 9370 guardian 2020-01-08T21:47:53.000Z The Guardian 4
## 9371 guardian 2020-01-08T21:47:52.000Z The Guardian 6
## 9372 guardian 2020-01-08T21:47:50.000Z The Guardian 16
## 9373 EveningStandard 2020-01-08T21:47:08.000Z Evening Standard 4
## 9374 DailyMailUK 2020-01-08T21:46:48.000Z Daily Mail U.K. 40
## 9375 DailyMirror 2020-01-08T21:45:36.000Z The Mirror 2
## 9376 DailyMirror 2020-01-08T21:45:00.000Z The Mirror 0
## 9377 DailyMirror 2020-01-08T21:45:00.000Z The Mirror 0
## 9378 DailyMirror 2020-01-08T21:45:00.000Z The Mirror 2
## 9379 DailyMirror 2020-01-08T21:44:26.000Z The Mirror 2
## 9380 guardian 2020-01-08T21:42:42.000Z The Guardian 21
## 9381 TheSun 2020-01-08T21:42:40.000Z The Sun 4
## 9382 TheSun 2020-01-08T21:42:10.000Z The Sun 12
## 9383 EveningStandard 2020-01-08T21:41:40.000Z Evening Standard 2
## 9384 DailyMailUK 2020-01-08T21:41:07.000Z Daily Mail U.K. 3
## 9385 TheSun 2020-01-08T21:41:06.000Z The Sun 6
## 9386 TheSun 2020-01-08T21:40:00.000Z The Sun 9
## 9387 DailyMirror 2020-01-08T21:39:00.000Z The Mirror 2
## 9388 DailyMirror 2020-01-08T21:36:58.000Z The Mirror 5
## 9389 DailyMirror 2020-01-08T21:36:00.000Z The Mirror 2
## 9390 Telegraph 2020-01-08T21:34:53.000Z The Telegraph 54
## 9391 guardian 2020-01-08T21:33:51.000Z The Guardian 6
## 9392 TheSun 2020-01-08T21:32:55.000Z The Sun 2
## 9393 EveningStandard 2020-01-08T21:31:55.000Z Evening Standard 2
## 9394 DailyMirror 2020-01-08T21:31:00.000Z The Mirror 1
## 9395 MetroUK 2020-01-08T21:30:16.000Z Metro 3
## 9396 DailyMirror 2020-01-08T21:30:00.000Z The Mirror 0
## 9397 TheSun 2020-01-08T21:30:00.000Z The Sun 14
## 9398 DailyMailUK 2020-01-08T21:27:44.000Z Daily Mail U.K. 1
## 9399 DailyMirror 2020-01-08T21:26:00.000Z The Mirror 6
## 9400 guardian 2020-01-08T21:24:29.000Z The Guardian 23
## 9401 DailyMirror 2020-01-08T21:24:15.000Z The Mirror 10
## 9402 TheSun 2020-01-08T21:24:09.000Z The Sun 1
## 9403 guardian 2020-01-08T21:23:15.000Z The Guardian 46
## 9404 Telegraph 2020-01-08T21:22:59.000Z The Telegraph 2
## 9405 TheSun 2020-01-08T21:22:57.000Z The Sun 2
## 9406 DailyMirror 2020-01-08T21:22:28.000Z The Mirror 16
## 9407 TheSun 2020-01-08T21:22:13.000Z The Sun 5
## 9408 DailyMailUK 2020-01-08T21:20:27.000Z Daily Mail U.K. 10
## 9409 TheSun 2020-01-08T21:20:00.000Z The Sun 6
## 9410 DailyMirror 2020-01-08T21:19:00.000Z The Mirror 0
## 9411 EveningStandard 2020-01-08T21:18:44.000Z Evening Standard 0
## 9412 DailyMirror 2020-01-08T21:18:40.000Z The Mirror 13
## 9413 DailyMirror 2020-01-08T21:18:00.000Z The Mirror 2
## 9414 guardian 2020-01-08T21:16:51.000Z The Guardian 143
## 9415 guardian 2020-01-08T21:16:49.000Z The Guardian 0
## 9416 DailyMirror 2020-01-08T21:15:00.000Z The Mirror 0
## 9417 DailyMirror 2020-01-08T21:15:00.000Z The Mirror 1
## 9418 TheSun 2020-01-08T21:13:30.000Z The Sun 0
## 9419 TheSun 2020-01-08T21:12:42.000Z The Sun 1
## 9420 DailyMirror 2020-01-08T21:11:19.000Z The Mirror 4
## 9421 EveningStandard 2020-01-08T21:10:43.000Z Evening Standard 0
## 9422 TheSun 2020-01-08T21:10:00.000Z The Sun 5
## 9423 DailyMirror 2020-01-08T21:09:59.000Z The Mirror 2
## 9424 TheSun 2020-01-08T21:09:50.000Z The Sun 16
## 9425 DailyMirror 2020-01-08T21:08:06.000Z The Mirror 8
## 9426 Telegraph 2020-01-08T21:08:02.000Z The Telegraph 9
## 9427 guardian 2020-01-08T21:07:57.000Z The Guardian 13
## 9428 TheSun 2020-01-08T21:06:55.000Z The Sun 2
## 9429 DailyMirror 2020-01-08T21:05:23.000Z The Mirror 9
## 9430 EveningStandard 2020-01-08T21:04:47.000Z Evening Standard 0
## 9431 DailyMirror 2020-01-08T21:03:00.000Z The Mirror 2
## 9432 DailyMirror 2020-01-08T21:02:39.000Z The Mirror 9
## 9433 TheSun 2020-01-08T21:02:35.000Z The Sun 2
## 9434 DailyMirror 2020-01-08T21:02:00.000Z The Mirror 1
## 9435 MetroUK 2020-01-08T21:00:20.000Z Metro 0
## 9436 DailyMailUK 2020-01-08T21:00:06.000Z Daily Mail U.K. 1
## 9437 TheSun 2020-01-08T21:00:01.000Z The Sun 18
## 9438 DailyMirror 2020-01-08T21:00:00.000Z The Mirror 1
## 9439 DailyMirror 2020-01-08T21:00:00.000Z The Mirror 0
## 9440 TheSun 2020-01-08T20:59:55.000Z The Sun 12
## 9441 DailyMirror 2020-01-08T20:59:50.000Z The Mirror 5
## 9442 EveningStandard 2020-01-08T20:58:28.000Z Evening Standard 3
## 9443 guardian 2020-01-08T20:58:07.000Z The Guardian 15
## 9444 DailyMirror 2020-01-08T20:58:00.000Z The Mirror 3
## 9445 DailyMirror 2020-01-08T20:58:00.000Z The Mirror 0
## 9446 TheSun 2020-01-08T20:53:40.000Z The Sun 1
## 9447 DailyMirror 2020-01-08T20:52:41.000Z The Mirror 1
## 9448 Telegraph 2020-01-08T20:52:35.000Z The Telegraph 5
## 9449 TheSun 2020-01-08T20:52:34.000Z The Sun 4
## 9450 guardian 2020-01-08T20:52:34.000Z The Guardian 9
## 9451 DailyMirror 2020-01-08T20:51:00.000Z The Mirror 4
## 9452 EveningStandard 2020-01-08T20:50:44.000Z Evening Standard 0
## 9453 TheSun 2020-01-08T20:50:00.000Z The Sun 14
## 9454 DailyMirror 2020-01-08T20:49:00.000Z The Mirror 2
## 9455 DailyMirror 2020-01-08T20:48:00.000Z The Mirror 2
## 9456 DailyMirror 2020-01-08T20:46:00.000Z The Mirror 0
## 9457 DailyMirror 2020-01-08T20:46:00.000Z The Mirror 3
## 9458 EveningStandard 2020-01-08T20:45:39.000Z Evening Standard 1
## 9459 DailyMirror 2020-01-08T20:45:30.000Z The Mirror 9
## 9460 DailyMirror 2020-01-08T20:45:00.000Z The Mirror 2
## 9461 DailyMirror 2020-01-08T20:45:00.000Z The Mirror 3
## 9462 guardian 2020-01-08T20:43:41.000Z The Guardian 33
## 9463 TheSun 2020-01-08T20:43:22.000Z The Sun 3
## 9464 TheSun 2020-01-08T20:42:44.000Z The Sun 6
## 9465 DailyMailUK 2020-01-08T20:41:10.000Z Daily Mail U.K. 3
## 9466 DailyMirror 2020-01-08T20:40:59.000Z The Mirror 6
## 9467 DailyMirror 2020-01-08T20:40:50.000Z The Mirror 6
## 9468 TheSun 2020-01-08T20:40:00.000Z The Sun 15
## 9469 EveningStandard 2020-01-08T20:37:26.000Z Evening Standard 4
## 9470 Telegraph 2020-01-08T20:37:12.000Z The Telegraph 573
## 9471 TheSun 2020-01-08T20:36:42.000Z The Sun 1
## 9472 DailyMirror 2020-01-08T20:36:33.000Z The Mirror 7
## 9473 guardian 2020-01-08T20:35:53.000Z The Guardian 3
## 9474 DailyMirror 2020-01-08T20:35:00.000Z The Mirror 3
## 9475 DailyMirror 2020-01-08T20:32:36.000Z The Mirror 3
## 9476 TheSun 2020-01-08T20:32:18.000Z The Sun 1
## 9477 DailyMailUK 2020-01-08T20:32:17.000Z Daily Mail U.K. 90
## 9478 DailyMirror 2020-01-08T20:32:00.000Z The Mirror 1
## 9479 DailyMirror 2020-01-08T20:31:00.000Z The Mirror 1
## 9480 EveningStandard 2020-01-08T20:30:34.000Z Evening Standard 5
## 9481 DailyMirror 2020-01-08T20:30:12.000Z The Mirror 55
## 9482 EveningStandard 2020-01-08T20:30:11.000Z Evening Standard 0
## 9483 MetroUK 2020-01-08T20:30:10.000Z Metro 1
## 9484 DailyMirror 2020-01-08T20:30:00.000Z The Mirror 1
## 9485 guardian 2020-01-08T20:30:00.000Z The Guardian 2
## 9486 TheSun 2020-01-08T20:30:00.000Z The Sun 4
## 9487 guardian 2020-01-08T20:27:12.000Z The Guardian 8
## 9488 DailyMirror 2020-01-08T20:26:13.000Z The Mirror 4
## 9489 EveningStandard 2020-01-08T20:24:22.000Z Evening Standard 6
## 9490 Telegraph 2020-01-08T20:24:16.000Z The Telegraph 2
## 9491 TheSun 2020-01-08T20:22:20.000Z The Sun 2
## 9492 DailyMirror 2020-01-08T20:22:00.000Z The Mirror 6
## 9493 EveningStandard 2020-01-08T20:21:14.000Z Evening Standard 1
## 9494 DailyMirror 2020-01-08T20:21:00.000Z The Mirror 2
## 9495 DailyMirror 2020-01-08T20:20:09.000Z The Mirror 0
## 9496 TheSun 2020-01-08T20:20:00.000Z The Sun 4
## 9497 DailyMailUK 2020-01-08T20:19:02.000Z Daily Mail U.K. 12
## 9498 DailyMirror 2020-01-08T20:19:00.000Z The Mirror 1
## 9499 DailyMirror 2020-01-08T20:19:00.000Z The Mirror 4
## 9500 guardian 2020-01-08T20:18:16.000Z The Guardian 175
## 9501 DailyMirror 2020-01-08T20:18:00.000Z The Mirror 0
## 9502 TheSun 2020-01-08T20:17:34.000Z The Sun 1
## 9503 TheSun 2020-01-08T20:17:30.000Z The Sun 5
## 9504 thetimes 2020-01-08T20:16:20.000Z The Times 10
## 9505 DailyMirror 2020-01-08T20:16:00.000Z The Mirror 0
## 9506 TheSun 2020-01-08T20:15:57.000Z The Sun 2
## 9507 TheSun 2020-01-08T20:12:32.000Z The Sun 4
## 9508 EveningStandard 2020-01-08T20:12:28.000Z Evening Standard 5
## 9509 EveningStandard 2020-01-08T20:11:32.000Z Evening Standard 1
## 9510 TheSun 2020-01-08T20:10:00.000Z The Sun 3
## 9511 DailyMirror 2020-01-08T20:09:26.000Z The Mirror 1
## 9512 DailyMirror 2020-01-08T20:07:20.000Z The Mirror 6
## 9513 guardian 2020-01-08T20:06:23.000Z The Guardian 39
## 9514 guardian 2020-01-08T20:06:21.000Z The Guardian 27
## 9515 guardian 2020-01-08T20:06:20.000Z The Guardian 10
## 9516 TheSun 2020-01-08T20:06:17.000Z The Sun 5
## 9517 TheSun 2020-01-08T20:03:52.000Z The Sun 3
## 9518 guardian 2020-01-08T20:02:35.000Z The Guardian 68
## 9519 TheSun 2020-01-08T20:02:32.000Z The Sun 1
## 9520 EveningStandard 2020-01-08T20:02:32.000Z Evening Standard 0
## 9521 TheSun 2020-01-08T20:01:19.000Z The Sun 0
## 9522 MetroUK 2020-01-08T20:00:14.000Z Metro 34
## 9523 DailyMailUK 2020-01-08T20:00:08.000Z Daily Mail U.K. 2
## 9524 DailyMirror 2020-01-08T20:00:00.000Z The Mirror 0
## 9525 TheSun 2020-01-08T20:00:00.000Z The Sun 12
## 9526 DailyMirror 2020-01-08T19:58:59.000Z The Mirror 4
## 9527 Telegraph 2020-01-08T19:55:43.000Z The Telegraph 9
## 9528 guardian 2020-01-08T19:54:40.000Z The Guardian 49
## 9529 EveningStandard 2020-01-08T19:53:41.000Z Evening Standard 0
## 9530 DailyMirror 2020-01-08T19:53:13.000Z The Mirror 2
## 9531 TheSun 2020-01-08T19:52:42.000Z The Sun 1
## 9532 DailyMirror 2020-01-08T19:50:00.000Z The Mirror 3
## 9533 DailyMirror 2020-01-08T19:50:00.000Z The Mirror 4
## 9534 TheSun 2020-01-08T19:50:00.000Z The Sun 3
## 9535 guardian 2020-01-08T19:46:50.000Z The Guardian 19
## 9536 DailyMirror 2020-01-08T19:46:00.000Z The Mirror 5
## 9537 EveningStandard 2020-01-08T19:45:51.000Z Evening Standard 1
## 9538 DailyMirror 2020-01-08T19:45:00.000Z The Mirror 0
## 9539 DailyMirror 2020-01-08T19:44:49.000Z The Mirror 2
## 9540 thetimes 2020-01-08T19:43:54.000Z The Times 2
## 9541 TheSun 2020-01-08T19:42:53.000Z The Sun 7
## 9542 TheSun 2020-01-08T19:42:34.000Z The Sun 5
## 9543 Telegraph 2020-01-08T19:40:55.000Z The Telegraph 8
## 9544 EveningStandard 2020-01-08T19:40:53.000Z Evening Standard 1
## 9545 guardian 2020-01-08T19:40:17.000Z The Guardian 8
## 9546 guardian 2020-01-08T19:40:16.000Z The Guardian 10
## 9547 guardian 2020-01-08T19:40:15.000Z The Guardian 1
## 9548 TheSun 2020-01-08T19:40:09.000Z The Sun 1
## 9549 DailyMailUK 2020-01-08T19:40:03.000Z Daily Mail U.K. 8
## 9550 TheSun 2020-01-08T19:40:00.000Z The Sun 11
## 9551 guardian 2020-01-08T19:39:56.000Z The Guardian 18
## 9552 DailyMirror 2020-01-08T19:39:50.000Z The Mirror 1
## 9553 DailyMirror 2020-01-08T19:38:00.000Z The Mirror 2
## 9554 DailyMirror 2020-01-08T19:37:54.000Z The Mirror 5
## 9555 EveningStandard 2020-01-08T19:36:20.000Z Evening Standard 5
## 9556 DailyMirror 2020-01-08T19:34:35.000Z The Mirror 7
## 9557 TheSun 2020-01-08T19:34:00.000Z The Sun 4
## 9558 DailyMirror 2020-01-08T19:34:00.000Z The Mirror 2
## 9559 TheSun 2020-01-08T19:33:03.000Z The Sun 3
## 9560 DailyMirror 2020-01-08T19:33:00.000Z The Mirror 3
## 9561 guardian 2020-01-08T19:31:58.000Z The Guardian 7
## 9562 MetroUK 2020-01-08T19:30:10.000Z Metro 1
## 9563 TheSun 2020-01-08T19:30:00.000Z The Sun 4
## 9564 TheSun 2020-01-08T19:29:46.000Z The Sun 1
## 9565 TheSun 2020-01-08T19:29:38.000Z The Sun 2
## 9566 TheSun 2020-01-08T19:29:20.000Z The Sun 2
## 9567 TheSun 2020-01-08T19:29:14.000Z The Sun 1
## 9568 DailyMirror 2020-01-08T19:28:33.000Z The Mirror 0
## 9569 DailyMirror 2020-01-08T19:26:28.000Z The Mirror 5
## 9570 DailyMirror 2020-01-08T19:26:18.000Z The Mirror 15
## 9571 EveningStandard 2020-01-08T19:25:34.000Z Evening Standard 2
## 9572 DailyMirror 2020-01-08T19:25:01.000Z The Mirror 6
## 9573 guardian 2020-01-08T19:23:57.000Z The Guardian 47
## 9574 TheSun 2020-01-08T19:22:58.000Z The Sun 1
## 9575 Telegraph 2020-01-08T19:21:59.000Z The Telegraph 1
## 9576 EveningStandard 2020-01-08T19:21:59.000Z Evening Standard 0
## 9577 EveningStandard 2020-01-08T19:21:01.000Z Evening Standard 1
## 9578 DailyMailUK 2020-01-08T19:20:15.000Z Daily Mail U.K. 1
## 9579 TheSun 2020-01-08T19:20:00.000Z The Sun 3
## 9580 DailyMirror 2020-01-08T19:19:00.000Z The Mirror 4
## 9581 TheSun 2020-01-08T19:16:54.000Z The Sun 5
## 9582 DailyMirror 2020-01-08T19:16:00.000Z The Mirror 1
## 9583 TheSun 2020-01-08T19:15:39.000Z The Sun 0
## 9584 guardian 2020-01-08T19:14:49.000Z The Guardian 10
## 9585 guardian 2020-01-08T19:14:48.000Z The Guardian 1
## 9586 guardian 2020-01-08T19:14:47.000Z The Guardian 4
## 9587 guardian 2020-01-08T19:14:46.000Z The Guardian 26
## 9588 guardian 2020-01-08T19:14:45.000Z The Guardian 10
## 9589 guardian 2020-01-08T19:14:43.000Z The Guardian 12
## 9590 guardian 2020-01-08T19:14:42.000Z The Guardian 11
## 9591 DailyMirror 2020-01-08T19:13:00.000Z The Mirror 3
## 9592 DailyMirror 2020-01-08T19:13:00.000Z The Mirror 3
## 9593 TheSun 2020-01-08T19:13:00.000Z The Sun 50
## 9594 TheSun 2020-01-08T19:12:54.000Z The Sun 7
## 9595 EveningStandard 2020-01-08T19:12:53.000Z Evening Standard 0
## 9596 DailyMirror 2020-01-08T19:11:55.000Z The Mirror 0
## 9597 thetimes 2020-01-08T19:11:42.000Z The Times 21
## 9598 guardian 2020-01-08T19:10:00.000Z The Guardian 3
## 9599 DailyMirror 2020-01-08T19:10:00.000Z The Mirror 1
## 9600 TheSun 2020-01-08T19:10:00.000Z The Sun 3
## 9601 TheSun 2020-01-08T19:08:20.000Z The Sun 1
## 9602 guardian 2020-01-08T19:06:48.000Z The Guardian 8
## 9603 Telegraph 2020-01-08T19:05:51.000Z The Telegraph 9
## 9604 DailyMirror 2020-01-08T19:03:36.000Z The Mirror 3
## 9605 TheSun 2020-01-08T19:02:46.000Z The Sun 0
## 9606 DailyMirror 2020-01-08T19:01:52.000Z The Mirror 7
## 9607 DailyMirror 2020-01-08T19:01:00.000Z The Mirror 0
## 9608 TheSun 2020-01-08T19:00:35.000Z The Sun 1
## 9609 MetroUK 2020-01-08T19:00:19.000Z Metro 3
## 9610 DailyMailUK 2020-01-08T19:00:09.000Z Daily Mail U.K. 1
## 9611 TheSun 2020-01-08T19:00:04.000Z The Sun 6
## 9612 DailyMirror 2020-01-08T19:00:00.000Z The Mirror 2
## 9613 DailyMirror 2020-01-08T19:00:00.000Z The Mirror 0
## 9614 TheSun 2020-01-08T19:00:00.000Z The Sun 34
## 9615 guardian 2020-01-08T18:58:27.000Z The Guardian 3
## 9616 DailyMirror 2020-01-08T18:57:08.000Z The Mirror 2
## 9617 DailyMirror 2020-01-08T18:57:00.000Z The Mirror 1
## 9618 EveningStandard 2020-01-08T18:55:06.000Z Evening Standard 6
## 9619 EveningStandard 2020-01-08T18:54:31.000Z Evening Standard 0
## 9620 TheSun 2020-01-08T18:52:34.000Z The Sun 2
## 9621 TheSun 2020-01-08T18:52:22.000Z The Sun 42
## 9622 EveningStandard 2020-01-08T18:51:44.000Z Evening Standard 0
## 9623 guardian 2020-01-08T18:50:10.000Z The Guardian 391
## 9624 TheSun 2020-01-08T18:50:00.000Z The Sun 45
## 9625 DailyMirror 2020-01-08T18:50:00.000Z The Mirror 2
## 9626 DailyMirror 2020-01-08T18:50:00.000Z The Mirror 5
## 9627 guardian 2020-01-08T18:47:27.000Z The Guardian 8
## 9628 EveningStandard 2020-01-08T18:47:27.000Z Evening Standard 1
## 9629 guardian 2020-01-08T18:47:26.000Z The Guardian 2
## 9630 guardian 2020-01-08T18:47:26.000Z The Guardian 10
## 9631 guardian 2020-01-08T18:47:16.000Z The Guardian 6
## 9632 guardian 2020-01-08T18:47:15.000Z The Guardian 7
## 9633 guardian 2020-01-08T18:47:14.000Z The Guardian 2
## 9634 guardian 2020-01-08T18:47:12.000Z The Guardian 6
## 9635 Telegraph 2020-01-08T18:46:50.000Z The Telegraph 27
## 9636 DailyMailUK 2020-01-08T18:46:07.000Z Daily Mail U.K. 50
## 9637 TheSun 2020-01-08T18:45:22.000Z The Sun 0
## 9638 DailyMirror 2020-01-08T18:45:00.000Z The Mirror 3
## 9639 guardian 2020-01-08T18:42:25.000Z The Guardian 21
## 9640 TheSun 2020-01-08T18:42:24.000Z The Sun 3
## 9641 EveningStandard 2020-01-08T18:41:22.000Z Evening Standard 0
## 9642 MetroUK 2020-01-08T18:40:34.000Z Metro 24
## 9643 thetimes 2020-01-08T18:40:26.000Z The Times 8
## 9644 DailyMailUK 2020-01-08T18:40:13.000Z Daily Mail U.K. 38
## 9645 DailyMailUK 2020-01-08T18:40:10.000Z Daily Mail U.K. 0
## 9646 TheSun 2020-01-08T18:40:00.000Z The Sun 6
## 9647 DailyMirror 2020-01-08T18:39:16.000Z The Mirror 50
## 9648 DailyMirror 2020-01-08T18:39:00.000Z The Mirror 2
## 9649 DailyMirror 2020-01-08T18:38:00.000Z The Mirror 5
## 9650 Telegraph 2020-01-08T18:36:33.000Z The Telegraph 7
## 9651 DailyMirror 2020-01-08T18:35:00.000Z The Mirror 2
## 9652 DailyMirror 2020-01-08T18:34:00.000Z The Mirror 1
## 9653 EveningStandard 2020-01-08T18:33:30.000Z Evening Standard 0
## 9654 DailyMirror 2020-01-08T18:33:24.000Z The Mirror 5
## 9655 TheSun 2020-01-08T18:32:34.000Z The Sun 0
## 9656 guardian 2020-01-08T18:32:34.000Z The Guardian 7
## 9657 DailyMirror 2020-01-08T18:32:00.000Z The Mirror 2
## 9658 TheSun 2020-01-08T18:30:41.000Z The Sun 0
## 9659 MetroUK 2020-01-08T18:30:13.000Z Metro 8
## 9660 TheSun 2020-01-08T18:30:00.000Z The Sun 13
## 9661 TheSun 2020-01-08T18:28:11.000Z The Sun 0
## 9662 EveningStandard 2020-01-08T18:25:32.000Z Evening Standard 0
## 9663 guardian 2020-01-08T18:24:21.000Z The Guardian 68
## 9664 TheSun 2020-01-08T18:22:36.000Z The Sun 0
## 9665 DailyMirror 2020-01-08T18:22:00.000Z The Mirror 7
## 9666 guardian 2020-01-08T18:21:24.000Z The Guardian 1
## 9667 guardian 2020-01-08T18:21:22.000Z The Guardian 1
## 9668 guardian 2020-01-08T18:21:21.000Z The Guardian 3
## 9669 guardian 2020-01-08T18:21:20.000Z The Guardian 9
## 9670 guardian 2020-01-08T18:21:18.000Z The Guardian 7
## 9671 DailyMailUK 2020-01-08T18:21:06.000Z Daily Mail U.K. 4
## 9672 DailyMirror 2020-01-08T18:21:00.000Z The Mirror 0
## 9673 guardian 2020-01-08T18:20:40.000Z The Guardian 19
## 9674 TheSun 2020-01-08T18:20:00.000Z The Sun 1
## 9675 DailyMirror 2020-01-08T18:19:00.000Z The Mirror 2
## 9676 EveningStandard 2020-01-08T18:18:43.000Z Evening Standard 0
## 9677 DailyMirror 2020-01-08T18:17:00.000Z The Mirror 1
## 9678 DailyMirror 2020-01-08T18:16:00.000Z The Mirror 1
## 9679 TheSun 2020-01-08T18:15:42.000Z The Sun 0
## 9680 Telegraph 2020-01-08T18:14:42.000Z The Telegraph 6
## 9681 guardian 2020-01-08T18:12:44.000Z The Guardian 98
## 9682 TheSun 2020-01-08T18:12:43.000Z The Sun 0
## 9683 EveningStandard 2020-01-08T18:11:42.000Z Evening Standard 5
## 9684 DailyMirror 2020-01-08T18:11:02.000Z The Mirror 13
## 9685 TheSun 2020-01-08T18:10:00.000Z The Sun 2
## 9686 thetimes 2020-01-08T18:09:54.000Z The Times 7
## 9687 TheSun 2020-01-08T18:08:37.000Z The Sun 0
## 9688 TheSun 2020-01-08T18:08:21.000Z The Sun 77
## 9689 DailyMirror 2020-01-08T18:08:00.000Z The Mirror 4
## 9690 TheSun 2020-01-08T18:07:59.000Z The Sun 0
## 9691 DailyMirror 2020-01-08T18:07:37.000Z The Mirror 3
## 9692 TheSun 2020-01-08T18:06:48.000Z The Sun 1
## 9693 EveningStandard 2020-01-08T18:05:19.000Z Evening Standard 0
## 9694 guardian 2020-01-08T18:05:19.000Z The Guardian 21
## 9695 TheSun 2020-01-08T18:04:46.000Z The Sun 8584
## 9696 TheSun 2020-01-08T18:02:33.000Z The Sun 0
## 9697 EveningStandard 2020-01-08T18:02:33.000Z Evening Standard 0
## 9698 TheSun 2020-01-08T18:00:32.000Z The Sun 1
## 9699 MetroUK 2020-01-08T18:00:09.000Z Metro 1
## 9700 DailyMailUK 2020-01-08T18:00:05.000Z Daily Mail U.K. 7
## 9701 DailyMirror 2020-01-08T18:00:00.000Z The Mirror 5
## 9702 TheSun 2020-01-08T18:00:00.000Z The Sun 1
## 9703 EveningStandard 2020-01-08T17:59:20.000Z Evening Standard 0
## 9704 guardian 2020-01-08T17:57:32.000Z The Guardian 12
## 9705 guardian 2020-01-08T17:57:31.000Z The Guardian 10
## 9706 MetroUK 2020-01-08T17:57:31.000Z Metro 3
## 9707 guardian 2020-01-08T17:57:30.000Z The Guardian 20
## 9708 MetroUK 2020-01-08T17:57:19.000Z Metro 3
## 9709 MetroUK 2020-01-08T17:57:15.000Z Metro 4
## 9710 DailyMirror 2020-01-08T17:55:58.000Z The Mirror 0
## 9711 EveningStandard 2020-01-08T17:55:26.000Z Evening Standard 0
## 9712 TheSun 2020-01-08T17:55:26.000Z The Sun 5
## 9713 DailyMirror 2020-01-08T17:55:00.000Z The Mirror 3
## 9714 TheSun 2020-01-08T17:54:31.000Z The Sun 2
## 9715 Telegraph 2020-01-08T17:53:20.000Z The Telegraph 104
## 9716 DailyMirror 2020-01-08T17:52:47.000Z The Mirror 4
## 9717 Telegraph 2020-01-08T17:52:32.000Z The Telegraph 14
## 9718 TheSun 2020-01-08T17:52:30.000Z The Sun 3
## 9719 TheSun 2020-01-08T17:52:07.000Z The Sun 3
## 9720 TheSun 2020-01-08T17:52:03.000Z The Sun 3
## 9721 EveningStandard 2020-01-08T17:51:09.000Z Evening Standard 0
## 9722 guardian 2020-01-08T17:50:09.000Z The Guardian 9
## 9723 TheSun 2020-01-08T17:50:00.000Z The Sun 10
## 9724 DailyMirror 2020-01-08T17:50:00.000Z The Mirror 6
## 9725 DailyMirror 2020-01-08T17:49:00.000Z The Mirror 3
## 9726 EveningStandard 2020-01-08T17:48:10.000Z Evening Standard 0
## 9727 EveningStandard 2020-01-08T17:44:04.000Z Evening Standard 1
## 9728 guardian 2020-01-08T17:44:02.000Z The Guardian 91
## 9729 TheSun 2020-01-08T17:42:11.000Z The Sun 2
## 9730 guardian 2020-01-08T17:42:09.000Z The Guardian 56
## 9731 DailyMailUK 2020-01-08T17:41:07.000Z Daily Mail U.K. 2
## 9732 EveningStandard 2020-01-08T17:40:08.000Z Evening Standard 1
## 9733 TheSun 2020-01-08T17:40:00.000Z The Sun 15
## 9734 TheSun 2020-01-08T17:39:37.000Z The Sun 5
## 9735 DailyMirror 2020-01-08T17:38:10.000Z The Mirror 0
## 9736 TheSun 2020-01-08T17:38:10.000Z The Sun 2
## 9737 DailyMirror 2020-01-08T17:38:00.000Z The Mirror 2
## 9738 thetimes 2020-01-08T17:36:13.000Z The Times 9
## 9739 DailyMirror 2020-01-08T17:36:00.000Z The Mirror 5
## 9740 DailyMirror 2020-01-08T17:36:00.000Z The Mirror 3
## 9741 DailyMirror 2020-01-08T17:34:45.000Z The Mirror 8
## 9742 DailyMirror 2020-01-08T17:33:48.000Z The Mirror 4
## 9743 guardian 2020-01-08T17:33:24.000Z The Guardian 37
## 9744 guardian 2020-01-08T17:33:24.000Z The Guardian 4
## 9745 guardian 2020-01-08T17:33:22.000Z The Guardian 13
## 9746 DailyMirror 2020-01-08T17:33:00.000Z The Mirror 0
## 9747 thetimes 2020-01-08T17:32:26.000Z The Times 5
## 9748 TheSun 2020-01-08T17:32:14.000Z The Sun 7
## 9749 EveningStandard 2020-01-08T17:31:32.000Z Evening Standard 2
## 9750 DailyMailUK 2020-01-08T17:31:07.000Z Daily Mail U.K. 2
## 9751 DailyMirror 2020-01-08T17:31:00.000Z The Mirror 1
## 9752 Telegraph 2020-01-08T17:30:36.000Z The Telegraph 22
## 9753 TheSun 2020-01-08T17:30:23.000Z The Sun 1
## 9754 MetroUK 2020-01-08T17:30:14.000Z Metro 9
## 9755 TheSun 2020-01-08T17:30:00.000Z The Sun 42
## 9756 EveningStandard 2020-01-08T17:29:14.000Z Evening Standard 0
## 9757 TheSun 2020-01-08T17:28:39.000Z The Sun 3
## 9758 TheSun 2020-01-08T17:28:10.000Z The Sun 3
## 9759 DailyMirror 2020-01-08T17:27:27.000Z The Mirror 10
## 9760 guardian 2020-01-08T17:27:07.000Z The Guardian 32
## 9761 EveningStandard 2020-01-08T17:25:06.000Z Evening Standard 0
## 9762 thetimes 2020-01-08T17:22:14.000Z The Times 4
## 9763 TheSun 2020-01-08T17:22:14.000Z The Sun 3
## 9764 DailyMirror 2020-01-08T17:21:07.000Z The Mirror 2
## 9765 DailyMailUK 2020-01-08T17:20:08.000Z Daily Mail U.K. 3
## 9766 TheSun 2020-01-08T17:20:00.000Z The Sun 10
## 9767 DailyMirror 2020-01-08T17:19:45.000Z The Mirror 9
## 9768 DailyMirror 2020-01-08T17:19:00.000Z The Mirror 3
## 9769 EveningStandard 2020-01-08T17:18:04.000Z Evening Standard 2
## 9770 DailyMirror 2020-01-08T17:17:00.000Z The Mirror 8
## 9771 DailyMirror 2020-01-08T17:17:00.000Z The Mirror 2
## 9772 guardian 2020-01-08T17:16:28.000Z The Guardian 12
## 9773 EveningStandard 2020-01-08T17:14:13.000Z Evening Standard 1
## 9774 TheSun 2020-01-08T17:12:17.000Z The Sun 2
## 9775 DailyMirror 2020-01-08T17:12:00.000Z The Mirror 2
## 9776 Telegraph 2020-01-08T17:10:39.000Z The Telegraph 2
## 9777 TheSun 2020-01-08T17:10:00.000Z The Sun 4
## 9778 TheSun 2020-01-08T17:10:00.000Z The Sun 4
## 9779 TheSun 2020-01-08T17:09:53.000Z The Sun 1
## 9780 DailyMirror 2020-01-08T17:09:32.000Z The Mirror 2
## 9781 DailyMailUK 2020-01-08T17:09:03.000Z Daily Mail U.K. 0
## 9782 DailyMirror 2020-01-08T17:08:02.000Z The Mirror 10
## 9783 EveningStandard 2020-01-08T17:07:45.000Z Evening Standard 2
## 9784 Telegraph 2020-01-08T17:07:23.000Z The Telegraph 0
## 9785 EveningStandard 2020-01-08T17:07:20.000Z Evening Standard 0
## 9786 DailyMirror 2020-01-08T17:06:53.000Z The Mirror 8
## 9787 guardian 2020-01-08T17:05:54.000Z The Guardian 8
## 9788 guardian 2020-01-08T17:05:53.000Z The Guardian 14
## 9789 guardian 2020-01-08T17:05:51.000Z The Guardian 9
## 9790 EveningStandard 2020-01-08T17:04:38.000Z Evening Standard 0
## 9791 DailyMirror 2020-01-08T17:02:53.000Z The Mirror 6
## 9792 DailyMirror 2020-01-08T17:02:43.000Z The Mirror 5
## 9793 DailyMirror 2020-01-08T17:02:30.000Z The Mirror 6
## 9794 TheSun 2020-01-08T17:02:11.000Z The Sun 1
## 9795 EveningStandard 2020-01-08T17:01:10.000Z Evening Standard 0
## 9796 TheSun 2020-01-08T17:00:29.000Z The Sun 38
## 9797 DailyMirror 2020-01-08T17:00:19.000Z The Mirror 1
## 9798 MetroUK 2020-01-08T17:00:08.000Z Metro 1
## 9799 DailyMirror 2020-01-08T17:00:01.000Z The Mirror 2
## 9800 guardian 2020-01-08T17:00:00.000Z The Guardian 3
## 9801 DailyMirror 2020-01-08T17:00:00.000Z The Mirror 1
## 9802 DailyMirror 2020-01-08T16:59:55.000Z The Mirror 2
## 9803 DailyMailUK 2020-01-08T16:59:04.000Z Daily Mail U.K. 12
## 9804 guardian 2020-01-08T16:59:02.000Z The Guardian 25
## 9805 DailyMirror 2020-01-08T16:58:50.000Z The Mirror 3
## 9806 DailyMirror 2020-01-08T16:58:46.000Z The Mirror 1
## 9807 TheSun 2020-01-08T16:58:32.000Z The Sun 46
## 9808 DailyMirror 2020-01-08T16:57:00.000Z The Mirror 0
## 9809 EveningStandard 2020-01-08T16:56:54.000Z Evening Standard 1
## 9810 TheSun 2020-01-08T16:56:34.000Z The Sun 8
## 9811 DailyMirror 2020-01-08T16:56:03.000Z The Mirror 2
## 9812 DailyMirror 2020-01-08T16:56:00.000Z The Mirror 5
## 9813 EveningStandard 2020-01-08T16:53:56.000Z Evening Standard 1
## 9814 TheSun 2020-01-08T16:52:59.000Z The Sun 2
## 9815 DailyMirror 2020-01-08T16:50:20.000Z The Mirror 5
## 9816 TheSun 2020-01-08T16:50:06.000Z The Sun 18
## 9817 guardian 2020-01-08T16:50:04.000Z The Guardian 29
## 9818 DailyMailUK 2020-01-08T16:50:03.000Z Daily Mail U.K. 13
## 9819 DailyMirror 2020-01-08T16:50:00.000Z The Mirror 8
## 9820 EveningStandard 2020-01-08T16:48:36.000Z Evening Standard 1
## 9821 DailyMirror 2020-01-08T16:47:20.000Z The Mirror 1
## 9822 DailyMirror 2020-01-08T16:47:06.000Z The Mirror 4
## 9823 Telegraph 2020-01-08T16:46:11.000Z The Telegraph 15
## 9824 thetimes 2020-01-08T16:45:11.000Z The Times 2
## 9825 EveningStandard 2020-01-08T16:44:46.000Z Evening Standard 1
## 9826 guardian 2020-01-08T16:44:02.000Z The Guardian 16
## 9827 EveningStandard 2020-01-08T16:43:20.000Z Evening Standard 0
## 9828 TheSun 2020-01-08T16:42:10.000Z The Sun 0
## 9829 DailyMirror 2020-01-08T16:40:34.000Z The Mirror 5
## 9830 TheSun 2020-01-08T16:40:00.000Z The Sun 3
## 9831 guardian 2020-01-08T16:39:24.000Z The Guardian 1
## 9832 guardian 2020-01-08T16:39:23.000Z The Guardian 6
## 9833 guardian 2020-01-08T16:39:16.000Z The Guardian 11
## 9834 guardian 2020-01-08T16:39:15.000Z The Guardian 5
## 9835 EveningStandard 2020-01-08T16:38:59.000Z Evening Standard 5
## 9836 EveningStandard 2020-01-08T16:38:53.000Z Evening Standard 3
## 9837 EveningStandard 2020-01-08T16:38:14.000Z Evening Standard 3
## 9838 guardian 2020-01-08T16:37:57.000Z The Guardian 49
## 9839 EveningStandard 2020-01-08T16:37:34.000Z Evening Standard 0
## 9840 DailyMailUK 2020-01-08T16:37:28.000Z Daily Mail U.K. 7
## 9841 DailyMirror 2020-01-08T16:37:23.000Z The Mirror 7
## 9842 EveningStandard 2020-01-08T16:37:12.000Z Evening Standard 3
## 9843 EveningStandard 2020-01-08T16:35:30.000Z Evening Standard 0
## 9844 EveningStandard 2020-01-08T16:35:11.000Z Evening Standard 0
## 9845 MetroUK 2020-01-08T16:35:05.000Z Metro 1
## 9846 DailyMirror 2020-01-08T16:35:00.000Z The Mirror 2
## 9847 MetroUK 2020-01-08T16:34:48.000Z Metro 1
## 9848 MetroUK 2020-01-08T16:34:04.000Z Metro 1
## 9849 EveningStandard 2020-01-08T16:33:41.000Z Evening Standard 2
## 9850 DailyMirror 2020-01-08T16:32:50.000Z The Mirror 6
## 9851 TheSun 2020-01-08T16:32:10.000Z The Sun 8
## 9852 EveningStandard 2020-01-08T16:31:42.000Z Evening Standard 3
## 9853 MetroUK 2020-01-08T16:30:14.000Z Metro 0
## 9854 guardian 2020-01-08T16:30:13.000Z The Guardian 7
## 9855 EveningStandard 2020-01-08T16:30:13.000Z Evening Standard 0
## 9856 MetroUK 2020-01-08T16:30:11.000Z Metro 0
## 9857 DailyMailUK 2020-01-08T16:30:08.000Z Daily Mail U.K. 11
## 9858 TheSun 2020-01-08T16:30:00.000Z The Sun 1
## 9859 DailyMirror 2020-01-09T09:21:40.000Z The Mirror 7
## 9860 DailyMirror 2020-01-09T09:21:30.000Z The Mirror 2
## 9861 EveningStandard 2020-01-09T09:21:28.000Z Evening Standard 0
## 9862 DailyMailUK 2020-01-09T09:21:08.000Z Daily Mail U.K. 12
## 9863 TheSun 2020-01-09T09:21:06.000Z The Sun 3
## 9864 DailyMailUK 2020-01-09T09:21:02.000Z Daily Mail U.K. 6
## 9865 DailyMirror 2020-01-09T09:20:45.000Z The Mirror 5
## 9866 TheSun 2020-01-09T09:20:00.000Z The Sun 20
## 9867 guardian 2020-01-09T09:18:22.000Z The Guardian 9
## 9868 DailyMirror 2020-01-09T09:18:01.000Z The Mirror 1
## 9869 DailyMirror 2020-01-09T09:17:48.000Z The Mirror 3
## 9870 DailyMirror 2020-01-09T09:17:32.000Z The Mirror 6
## 9871 DailyMailUK 2020-01-09T09:16:08.000Z Daily Mail U.K. 9
## 9872 DailyMirror 2020-01-09T09:13:23.000Z The Mirror 10
## 9873 TheSun 2020-01-09T09:12:37.000Z The Sun 6
## 9874 EveningStandard 2020-01-09T09:11:37.000Z Evening Standard 0
## 9875 DailyMirror 2020-01-09T09:11:01.000Z The Mirror 10
## 9876 DailyMailUK 2020-01-09T09:10:05.000Z Daily Mail U.K. 1
## 9877 TheSun 2020-01-09T09:10:00.000Z The Sun 1
## 9878 TheSun 2020-01-09T09:10:00.000Z The Sun 45
## 9879 guardian 2020-01-09T09:05:44.000Z The Guardian 16
## 9880 DailyMailUK 2020-01-09T09:05:18.000Z Daily Mail U.K. 10
## 9881 DailyMailUK 2020-01-09T09:02:49.000Z Daily Mail U.K. 18
## 9882 Telegraph 2020-01-09T09:02:46.000Z The Telegraph 5
## 9883 thetimes 2020-01-09T09:02:46.000Z The Times 0
## 9884 TheSun 2020-01-09T09:02:45.000Z The Sun 1
## 9885 DailyMirror 2020-01-09T09:02:17.000Z The Mirror 2
## 9886 MetroUK 2020-01-09T09:00:10.000Z Metro 2
## 9887 TheSun 2020-01-09T09:00:00.000Z The Sun 3
## 9888 guardian 2020-01-09T09:00:00.000Z The Guardian 4
## 9889 DailyMailUK 2020-01-09T08:59:04.000Z Daily Mail U.K. 4
## 9890 EveningStandard 2020-01-09T08:55:33.000Z Evening Standard 4
## 9891 TheSun 2020-01-09T08:54:58.000Z The Sun 2
## 9892 DailyMirror 2020-01-09T08:53:00.000Z The Mirror 1
## 9893 thetimes 2020-01-09T08:52:42.000Z The Times 7
## 9894 TheSun 2020-01-09T08:52:38.000Z The Sun 2
## 9895 DailyMirror 2020-01-09T08:51:34.000Z The Mirror 4
## 9896 DailyMailUK 2020-01-09T08:50:08.000Z Daily Mail U.K. 8
## 9897 TheSun 2020-01-09T08:50:00.000Z The Sun 12
## 9898 EveningStandard 2020-01-09T08:49:57.000Z Evening Standard 0
## 9899 DailyMailUK 2020-01-09T08:45:39.000Z Daily Mail U.K. 6
## 9900 TheSun 2020-01-09T08:45:07.000Z The Sun 3
## 9901 DailyMirror 2020-01-09T08:44:43.000Z The Mirror 0
## 9902 TheSun 2020-01-09T08:42:46.000Z The Sun 3
## 9903 DailyMirror 2020-01-09T08:42:31.000Z The Mirror 4
## 9904 DailyMailUK 2020-01-09T08:41:53.000Z Daily Mail U.K. 27
## 9905 DailyMirror 2020-01-09T08:41:19.000Z The Mirror 6
## 9906 DailyMirror 2020-01-09T08:40:22.000Z The Mirror 1
## 9907 DailyMailUK 2020-01-09T08:40:01.000Z Daily Mail U.K. 3
## 9908 DailyMirror 2020-01-09T08:40:00.000Z The Mirror 2
## 9909 TheSun 2020-01-09T08:40:00.000Z The Sun 13
## 9910 EveningStandard 2020-01-09T08:39:25.000Z Evening Standard 1
## 9911 Telegraph 2020-01-09T08:38:54.000Z The Telegraph 12
## 9912 DailyMailUK 2020-01-09T08:37:39.000Z Daily Mail U.K. 20
## 9913 DailyMirror 2020-01-09T08:37:37.000Z The Mirror 161
## 9914 DailyMirror 2020-01-09T08:36:00.000Z The Mirror 2
## 9915 TheSun 2020-01-09T08:32:56.000Z The Sun 1
## 9916 MetroUK 2020-01-09T08:30:10.000Z Metro 4
## 9917 DailyMailUK 2020-01-09T08:30:05.000Z Daily Mail U.K. 12
## 9918 guardian 2020-01-09T08:30:00.000Z The Guardian 9
## 9919 TheSun 2020-01-09T08:30:00.000Z The Sun 5
## 9920 Telegraph 2020-01-09T08:26:51.000Z The Telegraph 3
## 9921 Telegraph 2020-01-09T08:26:26.000Z The Telegraph 3
## 9922 guardian 2020-01-09T08:24:37.000Z The Guardian 4
## 9923 guardian 2020-01-09T08:24:36.000Z The Guardian 54
## 9924 DailyMailUK 2020-01-09T08:24:26.000Z Daily Mail U.K. 3
## 9925 thetimes 2020-01-09T08:24:10.000Z The Times 8
## 9926 TheSun 2020-01-09T08:23:46.000Z The Sun 5
## 9927 Telegraph 2020-01-09T08:22:09.000Z The Telegraph 45
## 9928 TheSun 2020-01-09T08:22:07.000Z The Sun 2
## 9929 DailyMirror 2020-01-09T08:21:40.000Z The Mirror 3
## 9930 EveningStandard 2020-01-09T08:21:22.000Z Evening Standard 1
## 9931 guardian 2020-01-09T08:20:11.000Z The Guardian 14
## 9932 EveningStandard 2020-01-09T08:20:08.000Z Evening Standard 2
## 9933 DailyMailUK 2020-01-09T08:20:06.000Z Daily Mail U.K. 13
## 9934 TheSun 2020-01-09T08:20:00.000Z The Sun 26
## 9935 DailyMirror 2020-01-09T08:18:36.000Z The Mirror 5
## 9936 DailyMirror 2020-01-09T08:18:30.000Z The Mirror 4
## 9937 DailyMirror 2020-01-09T08:15:46.000Z The Mirror 8
## 9938 EveningStandard 2020-01-09T08:14:55.000Z Evening Standard 1
## 9939 TheSun 2020-01-09T08:12:17.000Z The Sun 1
## 9940 TheSun 2020-01-09T08:11:48.000Z The Sun 1
## 9941 TheSun 2020-01-09T08:10:00.000Z The Sun 8
## 9942 DailyMailUK 2020-01-09T08:09:29.000Z Daily Mail U.K. 6
## 9943 DailyMailUK 2020-01-09T08:08:55.000Z Daily Mail U.K. 19
## 9944 guardian 2020-01-09T08:08:18.000Z The Guardian 35
## 9945 Telegraph 2020-01-09T08:07:41.000Z The Telegraph 1
## 9946 Telegraph 2020-01-09T08:06:07.000Z The Telegraph 10
## 9947 EveningStandard 2020-01-09T08:02:54.000Z Evening Standard 0
## 9948 Telegraph 2020-01-09T08:02:30.000Z The Telegraph 3
## 9949 TheSun 2020-01-09T08:02:23.000Z The Sun 5
## 9950 DailyMailUK 2020-01-09T08:01:53.000Z Daily Mail U.K. 8
## 9951 MetroUK 2020-01-09T08:01:33.000Z Metro 3
## 9952 Telegraph 2020-01-09T08:00:25.000Z The Telegraph 4
## 9953 TheSun 2020-01-09T08:00:00.000Z The Sun 4
## 9954 MetroUK 2020-01-09T07:59:03.000Z Metro 0
## 9955 DailyMirror 2020-01-09T07:58:58.000Z The Mirror 4
## 9956 DailyMirror 2020-01-09T07:58:19.000Z The Mirror 0
## 9957 DailyMirror 2020-01-09T07:58:01.000Z The Mirror 3
## 9958 guardian 2020-01-09T07:57:49.000Z The Guardian 1
## 9959 guardian 2020-01-09T07:57:48.000Z The Guardian 6
## 9960 TheSun 2020-01-09T07:57:24.000Z The Sun 0
## 9961 guardian 2020-01-09T07:57:24.000Z The Guardian 3
## 9962 DailyMirror 2020-01-09T07:53:32.000Z The Mirror 16
## 9963 TheSun 2020-01-09T07:52:30.000Z The Sun 5
## 9964 EveningStandard 2020-01-09T07:52:29.000Z Evening Standard 1
## 9965 DailyMirror 2020-01-09T07:52:18.000Z The Mirror 6
## 9966 DailyMailUK 2020-01-09T07:50:46.000Z Daily Mail U.K. 1
## 9967 TheSun 2020-01-09T07:50:00.000Z The Sun 11
## 9968 DailyMailUK 2020-01-09T07:49:25.000Z Daily Mail U.K. 2
## 9969 guardian 2020-01-09T07:48:53.000Z The Guardian 9
## 9970 Telegraph 2020-01-09T07:45:38.000Z The Telegraph 15
## 9971 guardian 2020-01-09T07:42:47.000Z The Guardian 19
## 9972 TheSun 2020-01-09T07:42:47.000Z The Sun 7
## 9973 DailyMirror 2020-01-09T07:41:14.000Z The Mirror 1
## 9974 EveningStandard 2020-01-09T07:40:50.000Z Evening Standard 1
## 9975 TheSun 2020-01-09T07:40:00.000Z The Sun 4
## 9976 MetroUK 2020-01-09T07:34:48.000Z Metro 3
## 9977 guardian 2020-01-09T07:33:53.000Z The Guardian 3
## 9978 guardian 2020-01-09T07:33:52.000Z The Guardian 3
## 9979 TheSun 2020-01-09T07:32:19.000Z The Sun 4
## 9980 Telegraph 2020-01-09T07:31:10.000Z The Telegraph 5
## 9981 guardian 2020-01-09T07:31:07.000Z The Guardian 18
## 9982 DailyMirror 2020-01-09T07:31:00.000Z The Mirror 0
## 9983 EveningStandard 2020-01-09T07:30:14.000Z Evening Standard 0
## 9984 TheSun 2020-01-09T07:30:00.000Z The Sun 10
## 9985 TheSun 2020-01-09T07:22:16.000Z The Sun 1
## 9986 DailyMailUK 2020-01-09T07:21:34.000Z Daily Mail U.K. 42
## 9987 DailyMailUK 2020-01-09T07:20:32.000Z Daily Mail U.K. 8
## 9988 thetimes 2020-01-09T07:20:23.000Z The Times 8
## 9989 EveningStandard 2020-01-09T07:20:18.000Z Evening Standard 0
## 9990 TheSun 2020-01-09T07:20:00.000Z The Sun 8
## 9991 guardian 2020-01-09T07:15:23.000Z The Guardian 37
## 9992 DailyMirror 2020-01-09T07:14:59.000Z The Mirror 3
## 9993 EveningStandard 2020-01-09T07:13:26.000Z Evening Standard 4
## 9994 TheSun 2020-01-09T07:12:26.000Z The Sun 10
## 9995 MetroUK 2020-01-09T07:12:18.000Z Metro 1
## 9996 TheSun 2020-01-09T07:10:00.000Z The Sun 4
## 9997 EveningStandard 2020-01-09T07:05:30.000Z Evening Standard 2
## 9998 guardian 2020-01-09T07:05:18.000Z The Guardian 7
## 9999 TheSun 2020-01-09T07:02:34.000Z The Sun 0
## 10000 thetimes 2020-01-09T07:00:26.000Z The Times 9
## 10001 EveningStandard 2020-01-09T07:00:23.000Z Evening Standard 0
## 10002 Telegraph 2020-01-09T07:00:21.000Z The Telegraph 21
## 10003 MetroUK 2020-01-09T07:00:13.000Z Metro 4
## 10004 TheSun 2020-01-09T07:00:00.000Z The Sun 9
## 10005 guardian 2020-01-09T06:56:27.000Z The Guardian 29
## 10006 EveningStandard 2020-01-09T06:55:28.000Z Evening Standard 0
## 10007 EveningStandard 2020-01-09T06:50:32.000Z Evening Standard 0
## 10008 EveningStandard 2020-01-09T06:45:45.000Z Evening Standard 2
## 10009 DailyMirror 2020-01-09T06:41:01.000Z The Mirror 4
## 10010 thetimes 2020-01-09T06:40:52.000Z The Times 16
## 10011 EveningStandard 2020-01-09T06:40:50.000Z Evening Standard 1
## 10012 TheSun 2020-01-09T06:40:00.000Z The Sun 18
## 10013 guardian 2020-01-09T06:38:25.000Z The Guardian 8
## 10014 guardian 2020-01-09T06:38:23.000Z The Guardian 26
## 10015 guardian 2020-01-09T06:38:22.000Z The Guardian 8
## 10016 EveningStandard 2020-01-09T06:35:54.000Z Evening Standard 1
## 10017 EveningStandard 2020-01-09T06:30:58.000Z Evening Standard 1
## 10018 Telegraph 2020-01-09T06:30:58.000Z The Telegraph 12
## 10019 MetroUK 2020-01-09T06:30:08.000Z Metro 14
## 10020 EveningStandard 2020-01-09T06:26:05.000Z Evening Standard 0
## 10021 thetimes 2020-01-09T06:20:11.000Z The Times 4
## 10022 EveningStandard 2020-01-09T06:20:10.000Z Evening Standard 0
## 10023 TheSun 2020-01-09T06:20:00.000Z The Sun 48
## 10024 EveningStandard 2020-01-09T06:15:16.000Z Evening Standard 1
## 10025 guardian 2020-01-09T06:13:31.000Z The Guardian 59
## 10026 guardian 2020-01-09T06:13:30.000Z The Guardian 10
## 10027 EveningStandard 2020-01-09T06:11:19.000Z Evening Standard 1
## 10028 guardian 2020-01-09T06:11:19.000Z The Guardian 5
## 10029 EveningStandard 2020-01-09T06:06:32.000Z Evening Standard 0
## 10030 EveningStandard 2020-01-09T06:01:38.000Z Evening Standard 2
## 10031 thetimes 2020-01-09T06:00:22.000Z The Times 17
## 10032 MetroUK 2020-01-09T06:00:05.000Z Metro 0
## 10033 TheSun 2020-01-09T06:00:00.000Z The Sun 49
## 10034 EveningStandard 2020-01-09T05:55:23.000Z Evening Standard 2
## 10035 EveningStandard 2020-01-09T05:50:28.000Z Evening Standard 1
## 10036 DailyMirror 2020-01-09T05:44:56.000Z The Mirror 4
## 10037 EveningStandard 2020-01-09T05:44:45.000Z Evening Standard 2
## 10038 DailyMirror 2020-01-09T05:43:16.000Z The Mirror 7
## 10039 EveningStandard 2020-01-09T05:40:06.000Z Evening Standard 0
## 10040 TheSun 2020-01-09T05:40:00.000Z The Sun 18
## 10041 EveningStandard 2020-01-09T05:34:12.000Z Evening Standard 0
## 10042 EveningStandard 2020-01-09T05:27:32.000Z Evening Standard 3
## 10043 DailyMailUK 2020-01-09T05:22:15.000Z Daily Mail U.K. 26
## 10044 guardian 2020-01-09T05:21:58.000Z The Guardian 63
## 10045 EveningStandard 2020-01-09T05:21:37.000Z Evening Standard 1
## 10046 TheSun 2020-01-09T05:20:00.000Z The Sun 8
## 10047 EveningStandard 2020-01-09T05:16:41.000Z Evening Standard 2
## 10048 EveningStandard 2020-01-09T05:10:48.000Z Evening Standard 0
## 10049 EveningStandard 2020-01-09T05:05:52.000Z Evening Standard 1
## 10050 TheSun 2020-01-09T05:00:00.000Z The Sun 5
## 10051 EveningStandard 2020-01-09T04:59:58.000Z Evening Standard 0
## 10052 guardian 2020-01-09T04:55:13.000Z The Guardian 52
## 10053 EveningStandard 2020-01-09T04:54:05.000Z Evening Standard 1
## 10054 EveningStandard 2020-01-09T04:48:10.000Z Evening Standard 1
## 10055 DailyMailUK 2020-01-09T04:43:43.000Z Daily Mail U.K. 185
## 10056 EveningStandard 2020-01-09T04:43:07.000Z Evening Standard 0
## 10057 TheSun 2020-01-09T04:40:00.000Z The Sun 10
## 10058 EveningStandard 2020-01-09T04:38:13.000Z Evening Standard 0
## 10059 DailyMirror 2020-01-09T04:38:00.000Z The Mirror 3
## 10060 EveningStandard 2020-01-09T04:34:18.000Z Evening Standard 0
## 10061 guardian 2020-01-09T04:34:17.000Z The Guardian 4
## 10062 EveningStandard 2020-01-09T04:29:22.000Z Evening Standard 0
## 10063 EveningStandard 2020-01-09T04:24:26.000Z Evening Standard 1
## 10064 TheSun 2020-01-09T04:20:00.000Z The Sun 2
## 10065 EveningStandard 2020-01-09T04:19:31.000Z Evening Standard 0
## 10066 EveningStandard 2020-01-09T04:14:37.000Z Evening Standard 0
## 10067 EveningStandard 2020-01-09T04:08:42.000Z Evening Standard 1
## 10068 EveningStandard 2020-01-09T04:03:47.000Z Evening Standard 1
## 10069 TheSun 2020-01-09T04:00:00.000Z The Sun 6
## 10070 EveningStandard 2020-01-09T03:57:54.000Z Evening Standard 0
## 10071 EveningStandard 2020-01-09T03:51:59.000Z Evening Standard 1
## 10072 EveningStandard 2020-01-09T03:46:06.000Z Evening Standard 0
## 10073 guardian 2020-01-09T03:43:09.000Z The Guardian 45
## 10074 Telegraph 2020-01-09T03:42:13.000Z The Telegraph 9
## 10075 EveningStandard 2020-01-09T03:40:12.000Z Evening Standard 1
## 10076 TheSun 2020-01-09T03:40:00.000Z The Sun 16
## 10077 DailyMirror 2020-01-09T03:38:00.000Z The Mirror 4
## 10078 EveningStandard 2020-01-09T03:35:17.000Z Evening Standard 0
## 10079 EveningStandard 2020-01-09T03:30:21.000Z Evening Standard 1
## 10080 DailyMirror 2020-01-09T03:28:00.000Z The Mirror 3
## 10081 DailyMirror 2020-01-09T03:27:10.000Z The Mirror 4
## 10082 EveningStandard 2020-01-09T03:25:26.000Z Evening Standard 1
## 10083 EveningStandard 2020-01-09T03:20:32.000Z Evening Standard 0
## 10084 TheSun 2020-01-09T03:20:00.000Z The Sun 4
## 10085 guardian 2020-01-09T03:17:40.000Z The Guardian 36
## 10086 EveningStandard 2020-01-09T03:16:35.000Z Evening Standard 0
## 10087 EveningStandard 2020-01-09T03:11:40.000Z Evening Standard 0
## 10088 EveningStandard 2020-01-09T03:06:44.000Z Evening Standard 0
## 10089 DailyMirror 2020-01-09T03:03:46.000Z The Mirror 3
## 10090 EveningStandard 2020-01-09T03:01:50.000Z Evening Standard 0
## 10091 guardian 2020-01-09T03:00:55.000Z The Guardian 15
## 10092 TheSun 2020-01-09T03:00:00.000Z The Sun 8
## 10093 EveningStandard 2020-01-09T02:56:56.000Z Evening Standard 3
## 10094 EveningStandard 2020-01-09T02:52:00.000Z Evening Standard 0
## 10095 DailyMailUK 2020-01-09T02:51:11.000Z Daily Mail U.K. 19
## 10096 EveningStandard 2020-01-09T02:46:05.000Z Evening Standard 0
## 10097 DailyMirror 2020-01-09T02:40:50.000Z The Mirror 1
## 10098 EveningStandard 2020-01-09T02:40:11.000Z Evening Standard 0
## 10099 TheSun 2020-01-09T02:40:00.000Z The Sun 9
## 10100 guardian 2020-01-09T02:35:17.000Z The Guardian 25
## 10101 EveningStandard 2020-01-09T02:35:17.000Z Evening Standard 1
## 10102 EveningStandard 2020-01-09T02:31:20.000Z Evening Standard 1
## 10103 DailyMirror 2020-01-09T02:28:00.000Z The Mirror 1
## 10104 DailyMirror 2020-01-09T02:28:00.000Z The Mirror 4
## 10105 EveningStandard 2020-01-09T02:25:26.000Z Evening Standard 0
## 10106 DailyMirror 2020-01-09T02:23:00.000Z The Mirror 0
## 10107 DailyMirror 2020-01-09T02:20:44.000Z The Mirror 1
## 10108 EveningStandard 2020-01-09T02:20:32.000Z Evening Standard 0
## 10109 TheSun 2020-01-09T02:20:00.000Z The Sun 23
## 10110 DailyMirror 2020-01-09T02:18:00.000Z The Mirror 2
## 10111 DailyMirror 2020-01-09T02:17:00.000Z The Mirror 4
## 10112 EveningStandard 2020-01-09T02:14:36.000Z Evening Standard 0
## 10113 guardian 2020-01-09T02:10:41.000Z The Guardian 66
## 10114 EveningStandard 2020-01-09T02:07:44.000Z Evening Standard 0
## 10115 guardian 2020-01-09T02:01:49.000Z The Guardian 7
## 10116 TheSun 2020-01-09T02:00:00.000Z The Sun 9
## 10117 EveningStandard 2020-01-09T01:59:51.000Z Evening Standard 0
## 10118 EveningStandard 2020-01-09T01:51:43.000Z Evening Standard 0
## 10119 Telegraph 2020-01-09T01:49:49.000Z The Telegraph 9
## 10120 EveningStandard 2020-01-09T01:43:51.000Z Evening Standard 0
## 10121 TheSun 2020-01-09T01:40:00.000Z The Sun 3
## 10122 guardian 2020-01-09T01:36:59.000Z The Guardian 11
## 10123 EveningStandard 2020-01-09T01:35:59.000Z Evening Standard 0
## 10124 EveningStandard 2020-01-09T01:30:06.000Z Evening Standard 0
## 10125 DailyMirror 2020-01-09T01:30:00.000Z The Mirror 4
## 10126 DailyMirror 2020-01-09T01:27:00.000Z The Mirror 1
## 10127 EveningStandard 2020-01-09T01:25:10.000Z Evening Standard 1
## 10128 DailyMirror 2020-01-09T01:23:00.000Z The Mirror 4
## 10129 DailyMirror 2020-01-09T01:21:00.000Z The Mirror 0
## 10130 TheSun 2020-01-09T01:20:00.000Z The Sun 2
## 10131 EveningStandard 2020-01-09T01:19:37.000Z Evening Standard 0
## 10132 EveningStandard 2020-01-09T01:16:29.000Z Evening Standard 1
## 10133 guardian 2020-01-09T01:15:30.000Z The Guardian 9
## 10134 DailyMirror 2020-01-09T01:12:00.000Z The Mirror 3
## 10135 EveningStandard 2020-01-09T01:10:36.000Z Evening Standard 1
## 10136 guardian 2020-01-09T01:09:37.000Z The Guardian 7
## 10137 EveningStandard 2020-01-09T01:05:41.000Z Evening Standard 1
## 10138 EveningStandard 2020-01-09T01:01:45.000Z Evening Standard 0
## 10139 TheSun 2020-01-09T01:00:00.000Z The Sun 7
## 10140 guardian 2020-01-09T00:58:48.000Z The Guardian 119
## 10141 EveningStandard 2020-01-09T00:58:47.000Z Evening Standard 1
## 10142 EveningStandard 2020-01-09T00:53:53.000Z Evening Standard 0
## 10143 DailyMirror 2020-01-09T00:50:00.000Z The Mirror 0
## 10144 EveningStandard 2020-01-09T00:49:56.000Z Evening Standard 2
## 10145 guardian 2020-01-09T00:49:35.000Z The Guardian 0
## 10146 guardian 2020-01-09T00:49:33.000Z The Guardian 34
## 10147 DailyMirror 2020-01-09T00:45:00.000Z The Mirror 2
## 10148 EveningStandard 2020-01-09T00:44:01.000Z Evening Standard 0
## 10149 guardian 2020-01-09T00:41:05.000Z The Guardian 26
## 10150 EveningStandard 2020-01-09T00:40:06.000Z Evening Standard 1
## 10151 TheSun 2020-01-09T00:40:00.000Z The Sun 19
## 10152 EveningStandard 2020-01-09T00:37:08.000Z Evening Standard 0
## 10153 EveningStandard 2020-01-09T00:33:12.000Z Evening Standard 0
## 10154 DailyMirror 2020-01-09T00:30:00.000Z The Mirror 3
## 10155 EveningStandard 2020-01-09T00:28:42.000Z Evening Standard 0
## 10156 DailyMirror 2020-01-09T00:28:00.000Z The Mirror 11
## 10157 guardian 2020-01-09T00:27:44.000Z The Guardian 10
## 10158 DailyMirror 2020-01-09T00:23:00.000Z The Mirror 1
## 10159 EveningStandard 2020-01-09T00:22:49.000Z Evening Standard 0
## 10160 guardian 2020-01-09T00:22:17.000Z The Guardian 25
## 10161 guardian 2020-01-09T00:22:16.000Z The Guardian 39
## 10162 guardian 2020-01-09T00:22:14.000Z The Guardian 18
## 10163 guardian 2020-01-09T00:22:13.000Z The Guardian 22
## 10164 guardian 2020-01-09T00:22:12.000Z The Guardian 10
## 10165 DailyMirror 2020-01-09T00:21:00.000Z The Mirror 1
## 10166 TheSun 2020-01-09T00:20:00.000Z The Sun 22
## 10167 EveningStandard 2020-01-09T00:19:51.000Z Evening Standard 3
## 10168 DailyMirror 2020-01-09T00:18:00.000Z The Mirror 2
## 10169 DailyMirror 2020-01-09T00:16:00.000Z The Mirror 25
## 10170 EveningStandard 2020-01-09T00:15:55.000Z Evening Standard 0
## 10171 Telegraph 2020-01-09T00:13:02.000Z The Telegraph 34
## 10172 DailyMirror 2020-01-09T00:11:47.000Z The Mirror 1
## 10173 EveningStandard 2020-01-09T00:11:01.000Z Evening Standard 3
## 10174 DailyMirror 2020-01-09T00:10:35.000Z The Mirror 1
## 10175 EveningStandard 2020-01-09T00:06:22.000Z Evening Standard 0
## 10176 DailyMirror 2020-01-09T00:05:00.000Z The Mirror 3
## 10177 DailyMirror 2020-01-09T00:04:00.000Z The Mirror 2
## 10178 DailyMirror 2020-01-09T00:03:32.000Z The Mirror 0
## 10179 EveningStandard 2020-01-09T00:03:25.000Z Evening Standard 1
## 10180 EveningStandard 2020-01-09T00:01:55.000Z Evening Standard 0
## 10181 guardian 2020-01-09T00:00:47.000Z The Guardian 37
## 10182 TheSun 2020-01-09T00:00:00.000Z The Sun 59
## 10183 DailyMailUK 2020-01-08T23:59:04.000Z Daily Mail U.K. 3
## 10184 EveningStandard 2020-01-08T23:58:27.000Z Evening Standard 3
## 10185 DailyMirror 2020-01-08T23:58:20.000Z The Mirror 0
## 10186 DailyMirror 2020-01-08T23:56:51.000Z The Mirror 6
## 10187 DailyMirror 2020-01-08T23:56:00.000Z The Mirror 2
## 10188 DailyMirror 2020-01-08T23:55:10.000Z The Mirror 3
## 10189 Telegraph 2020-01-08T23:54:33.000Z The Telegraph 4
## 10190 EveningStandard 2020-01-08T23:53:31.000Z Evening Standard 2
## 10191 EveningStandard 2020-01-08T23:51:32.000Z Evening Standard 0
## 10192 DailyMirror 2020-01-08T23:51:00.000Z The Mirror 3
## 10193 DailyMirror 2020-01-08T23:50:00.000Z The Mirror 1
## 10194 DailyMirror 2020-01-08T23:50:00.000Z The Mirror 3
## 10195 TheSun 2020-01-08T23:50:00.000Z The Sun 9
## 10196 EveningStandard 2020-01-08T23:48:35.000Z Evening Standard 1
## 10197 EveningStandard 2020-01-08T23:45:37.000Z Evening Standard 1
## 10198 EveningStandard 2020-01-08T23:43:40.000Z Evening Standard 0
## 10199 DailyMirror 2020-01-08T23:41:00.000Z The Mirror 6
## 10200 DailyMirror 2020-01-08T23:41:00.000Z The Mirror 1
## 10201 DailyMailUK 2020-01-08T23:40:09.000Z Daily Mail U.K. 3
## 10202 TheSun 2020-01-08T23:40:00.000Z The Sun 5
## 10203 guardian 2020-01-08T23:39:44.000Z The Guardian 6
## 10204 EveningStandard 2020-01-08T23:38:45.000Z Evening Standard 1
## 10205 DailyMirror 2020-01-08T23:37:11.000Z The Mirror 3
## 10206 EveningStandard 2020-01-08T23:35:41.000Z Evening Standard 0
## 10207 EveningStandard 2020-01-08T23:32:44.000Z Evening Standard 0
## 10208 DailyMirror 2020-01-08T23:32:00.000Z The Mirror 0
## 10209 Telegraph 2020-01-08T23:31:47.000Z The Telegraph 12
## 10210 guardian 2020-01-08T23:30:04.000Z The Guardian 1
## 10211 TheSun 2020-01-08T23:30:00.000Z The Sun 3
## 10212 EveningStandard 2020-01-08T23:29:47.000Z Evening Standard 0
## 10213 DailyMirror 2020-01-08T23:27:29.000Z The Mirror 13
## 10214 EveningStandard 2020-01-08T23:24:51.000Z Evening Standard 0
## 10215 EveningStandard 2020-01-08T23:22:55.000Z Evening Standard 0
## 10216 TheSun 2020-01-08T23:22:55.000Z The Sun 6
## 10217 DailyMirror 2020-01-08T23:22:00.000Z The Mirror 5
## 10218 DailyMirror 2020-01-08T23:21:00.000Z The Mirror 5
## 10219 DailyMirror 2020-01-08T23:21:00.000Z The Mirror 9
## 10220 DailyMailUK 2020-01-08T23:20:05.000Z Daily Mail U.K. 11
## 10221 DailyMirror 2020-01-08T23:20:00.000Z The Mirror 3
## 10222 TheSun 2020-01-08T23:20:00.000Z The Sun 16
## 10223 Telegraph 2020-01-08T23:19:01.000Z The Telegraph 10
## 10224 DailyMirror 2020-01-08T23:18:00.000Z The Mirror 4
## 10225 EveningStandard 2020-01-08T23:18:00.000Z Evening Standard 2
## 10226 guardian 2020-01-08T23:15:11.000Z The Guardian 2
## 10227 EveningStandard 2020-01-08T23:14:10.000Z Evening Standard 0
## 10228 DailyMailUK 2020-01-08T23:13:51.000Z Daily Mail U.K. 42
## 10229 DailyMirror 2020-01-08T23:12:53.000Z The Mirror 7
## 10230 EveningStandard 2020-01-08T23:12:11.000Z Evening Standard 1
## 10231 DailyMirror 2020-01-08T23:10:11.000Z The Mirror 7
## 10232 DailyMirror 2020-01-08T23:10:00.000Z The Mirror 0
## 10233 TheSun 2020-01-08T23:10:00.000Z The Sun 13
## 10234 EveningStandard 2020-01-08T23:09:09.000Z Evening Standard 2
## 10235 DailyMirror 2020-01-08T23:07:27.000Z The Mirror 7
## 10236 EveningStandard 2020-01-08T23:07:09.000Z Evening Standard 7
## 10237 DailyMirror 2020-01-08T23:06:00.000Z The Mirror 7
## 10238 DailyMirror 2020-01-08T23:05:16.000Z The Mirror 8
## 10239 Telegraph 2020-01-08T23:05:15.000Z The Telegraph 10
## 10240 guardian 2020-01-08T23:05:14.000Z The Guardian 4
## 10241 guardian 2020-01-08T23:05:13.000Z The Guardian 2
## 10242 guardian 2020-01-08T23:05:11.000Z The Guardian 6
## 10243 guardian 2020-01-08T23:05:09.000Z The Guardian 4
## 10244 DailyMirror 2020-01-08T23:04:00.000Z The Mirror 5
## 10245 TheSun 2020-01-08T23:03:00.000Z The Sun 13
## 10246 TheSun 2020-01-08T23:02:14.000Z The Sun 2
## 10247 EveningStandard 2020-01-08T23:02:14.000Z Evening Standard 1
## 10248 DailyMirror 2020-01-08T23:01:00.000Z The Mirror 1
## 10249 DailyMirror 2020-01-08T23:01:00.000Z The Mirror 0
## 10250 DailyMailUK 2020-01-08T23:00:06.000Z Daily Mail U.K. 1
## 10251 DailyMirror 2020-01-08T23:00:00.000Z The Mirror 1
## 10252 TheSun 2020-01-08T23:00:00.000Z The Sun 2
## 10253 EveningStandard 2020-01-08T22:59:19.000Z Evening Standard 3
## 10254 EveningStandard 2020-01-08T22:57:19.000Z Evening Standard 0
## 10255 EveningStandard 2020-01-08T22:54:23.000Z Evening Standard 1
## 10256 DailyMailUK 2020-01-08T22:52:34.000Z Daily Mail U.K. 16
## 10257 TheSun 2020-01-08T22:52:27.000Z The Sun 5
## 10258 Telegraph 2020-01-08T22:52:19.000Z The Telegraph 31
## 10259 EveningStandard 2020-01-08T22:51:45.000Z Evening Standard 0
## 10260 DailyMirror 2020-01-08T22:51:00.000Z The Mirror 5
## 10261 DailyMirror 2020-01-08T22:50:00.000Z The Mirror 0
## 10262 TheSun 2020-01-08T22:50:00.000Z The Sun 8
## 10263 DailyMirror 2020-01-08T22:50:00.000Z The Mirror 0
## 10264 EveningStandard 2020-01-08T22:49:38.000Z Evening Standard 0
## 10265 DailyMirror 2020-01-08T22:49:25.000Z The Mirror 1
## 10266 guardian 2020-01-08T22:47:39.000Z The Guardian 3
## 10267 EveningStandard 2020-01-08T22:45:41.000Z Evening Standard 0
## 10268 EveningStandard 2020-01-08T22:43:43.000Z Evening Standard 0
## 10269 TheSun 2020-01-08T22:42:45.000Z The Sun 1
## 10270 EveningStandard 2020-01-08T22:41:45.000Z Evening Standard 1
## 10271 DailyMirror 2020-01-08T22:41:00.000Z The Mirror 5
## 10272 DailyMirror 2020-01-08T22:41:00.000Z The Mirror 0
## 10273 TheSun 2020-01-08T22:40:55.000Z The Sun 9
## 10274 Telegraph 2020-01-08T22:40:50.000Z The Telegraph 5
## 10275 DailyMirror 2020-01-08T22:40:42.000Z The Mirror 21
## 10276 DailyMirror 2020-01-08T22:40:33.000Z The Mirror 4
## 10277 DailyMailUK 2020-01-08T22:40:05.000Z Daily Mail U.K. 1
## 10278 TheSun 2020-01-08T22:40:00.000Z The Sun 151
## 10279 guardian 2020-01-08T22:39:21.000Z The Guardian 1
## 10280 guardian 2020-01-08T22:39:19.000Z The Guardian 3
## 10281 EveningStandard 2020-01-08T22:38:49.000Z Evening Standard 2
## 10282 DailyMirror 2020-01-08T22:37:05.000Z The Mirror 13
## 10283 guardian 2020-01-08T22:35:54.000Z The Guardian 16
## 10284 EveningStandard 2020-01-08T22:35:52.000Z Evening Standard 0
## 10285 TheSun 2020-01-08T22:35:06.000Z The Sun 4
## 10286 EveningStandard 2020-01-08T22:33:53.000Z Evening Standard 1
## 10287 TheSun 2020-01-08T22:33:15.000Z The Sun 10
## 10288 TheSun 2020-01-08T22:32:56.000Z The Sun 3
## 10289 TheSun 2020-01-08T22:31:22.000Z The Sun 10
## 10290 DailyMirror 2020-01-08T22:31:00.000Z The Mirror 1
## 10291 EveningStandard 2020-01-08T22:30:56.000Z Evening Standard 0
## 10292 MetroUK 2020-01-08T22:30:12.000Z Metro 3
## 10293 DailyMirror 2020-01-08T22:30:00.000Z The Mirror 1
## 10294 DailyMirror 2020-01-08T22:30:00.000Z The Mirror 1
## 10295 TheSun 2020-01-08T22:30:00.000Z The Sun 43
## 10296 DailyMirror 2020-01-08T22:29:18.000Z The Mirror 3
## 10297 EveningStandard 2020-01-08T22:28:58.000Z Evening Standard 1
## 10298 Telegraph 2020-01-08T22:28:02.000Z The Telegraph 49
## 10299 TheSun 2020-01-08T22:27:39.000Z The Sun 8
## 10300 EveningStandard 2020-01-08T22:27:00.000Z Evening Standard 1
## 10301 DailyMirror 2020-01-08T22:27:00.000Z The Mirror 2
## 10302 guardian 2020-01-08T22:26:10.000Z The Guardian 24
## 10303 DailyMirror 2020-01-08T22:25:55.000Z The Mirror 10
## 10304 DailyMailUK 2020-01-08T22:25:31.000Z Daily Mail U.K. 32
## 10305 DailyMirror 2020-01-08T22:25:05.000Z The Mirror 4
## 10306 TheSun 2020-01-08T22:24:08.000Z The Sun 4
## 10307 EveningStandard 2020-01-08T22:24:03.000Z Evening Standard 1
## 10308 DailyMirror 2020-01-08T22:22:00.000Z The Mirror 2
## 10309 TheSun 2020-01-08T22:21:23.000Z The Sun 17
## 10310 EveningStandard 2020-01-08T22:21:05.000Z Evening Standard 3
## 10311 DailyMirror 2020-01-08T22:20:15.000Z The Mirror 1
## 10312 DailyMailUK 2020-01-08T22:20:06.000Z Daily Mail U.K. 5
## 10313 DailyMirror 2020-01-08T22:20:01.000Z The Mirror 1
## 10314 TheSun 2020-01-08T22:20:00.000Z The Sun 8
## 10315 guardian 2020-01-08T22:19:52.000Z The Guardian 26
## 10316 DailyMirror 2020-01-08T22:19:00.000Z The Mirror 0
## 10317 DailyMirror 2020-01-08T22:18:47.000Z The Mirror 3
## 10318 DailyMirror 2020-01-08T22:18:00.000Z The Mirror 1
## 10319 DailyMirror 2020-01-08T22:17:35.000Z The Mirror 6
## 10320 DailyMirror 2020-01-08T22:17:13.000Z The Mirror 7
## 10321 DailyMirror 2020-01-08T22:16:03.000Z The Mirror 3
## 10322 Telegraph 2020-01-08T22:15:11.000Z The Telegraph 13
## 10323 EveningStandard 2020-01-08T22:15:06.000Z Evening Standard 0
## 10324 guardian 2020-01-08T22:14:51.000Z The Guardian 17
## 10325 DailyMirror 2020-01-08T22:14:47.000Z The Mirror 6
## 10326 TheSun 2020-01-08T22:14:37.000Z The Sun 2
## 10327 TheSun 2020-01-08T22:14:32.000Z The Sun 5
## 10328 TheSun 2020-01-08T22:14:00.000Z The Sun 261
## 10329 guardian 2020-01-08T22:12:35.000Z The Guardian 0
## 10330 guardian 2020-01-08T22:12:35.000Z The Guardian 33
## 10331 TheSun 2020-01-08T22:12:10.000Z The Sun 14
## 10332 TheSun 2020-01-08T22:12:10.000Z The Sun 2
## 10333 EveningStandard 2020-01-08T22:12:09.000Z Evening Standard 1
## 10334 DailyMirror 2020-01-08T22:12:08.000Z The Mirror 9
## 10335 TheSun 2020-01-08T22:11:23.000Z The Sun 1
## 10336 DailyMirror 2020-01-08T22:10:23.000Z The Mirror 4
## 10337 TheSun 2020-01-08T22:10:00.000Z The Sun 6
## 10338 TheSun 2020-01-08T22:09:27.000Z The Sun 9
## 10339 DailyMirror 2020-01-08T22:08:17.000Z The Mirror 5
## 10340 guardian 2020-01-08T22:06:59.000Z The Guardian 1
## 10341 DailyMirror 2020-01-08T22:06:35.000Z The Mirror 5
## 10342 EveningStandard 2020-01-08T22:06:05.000Z Evening Standard 13
## 10343 DailyMirror 2020-01-08T22:06:00.000Z The Mirror 0
## 10344 DailyMirror 2020-01-08T22:05:56.000Z The Mirror 3
## 10345 DailyMirror 2020-01-08T22:05:00.000Z The Mirror 1
## 10346 DailyMirror 2020-01-08T22:04:00.000Z The Mirror 2
## 10347 EveningStandard 2020-01-08T22:03:03.000Z Evening Standard 2
## 10348 DailyMirror 2020-01-08T22:03:00.000Z The Mirror 2
## 10349 Telegraph 2020-01-08T22:02:08.000Z The Telegraph 11
## 10350 DailyMirror 2020-01-08T22:01:24.000Z The Mirror 0
## 10351 TheSun 2020-01-08T22:01:07.000Z The Sun 23
## 10352 DailyMirror 2020-01-08T22:01:00.000Z The Mirror 0
## 10353 DailyMirror 2020-01-08T22:01:00.000Z The Mirror 0
## 10354 MetroUK 2020-01-08T22:00:22.000Z Metro 0
## 10355 DailyMailUK 2020-01-08T22:00:06.000Z Daily Mail U.K. 1
## 10356 guardian 2020-01-08T22:00:00.000Z The Guardian 2
## 10357 DailyMirror 2020-01-08T22:00:00.000Z The Mirror 1
## 10358 TheSun 2020-01-08T22:00:00.000Z The Sun 2
## 10359 DailyMirror 2020-01-09T15:19:24.000Z The Mirror 1
## 10360 DailyMirror 2020-01-09T15:14:58.000Z The Mirror 3
## 10361 guardian 2020-01-09T15:14:53.000Z The Guardian 2
## 10362 guardian 2020-01-09T15:14:52.000Z The Guardian 14
## 10363 guardian 2020-01-09T15:14:51.000Z The Guardian 1
## 10364 DailyMirror 2020-01-09T15:14:18.000Z The Mirror 8
## 10365 EveningStandard 2020-01-09T15:13:40.000Z Evening Standard 4
## 10366 DailyMailUK 2020-01-09T15:12:52.000Z Daily Mail U.K. 10
## 10367 thetimes 2020-01-09T15:12:39.000Z The Times 4
## 10368 TheSun 2020-01-09T15:12:16.000Z The Sun 8
## 10369 DailyMailUK 2020-01-09T15:11:04.000Z Daily Mail U.K. 4
## 10370 TheSun 2020-01-09T15:10:00.000Z The Sun 4
## 10371 Telegraph 2020-01-09T15:09:57.000Z The Telegraph 3
## 10372 EveningStandard 2020-01-09T15:08:37.000Z Evening Standard 0
## 10373 DailyMirror 2020-01-09T15:08:23.000Z The Mirror 5
## 10374 EveningStandard 2020-01-09T15:08:02.000Z Evening Standard 0
## 10375 DailyMirror 2020-01-09T15:07:07.000Z The Mirror 12
## 10376 guardian 2020-01-09T15:07:03.000Z The Guardian 9
## 10377 DailyMirror 2020-01-09T15:06:44.000Z The Mirror 3
## 10378 DailyMirror 2020-01-09T15:06:00.000Z The Mirror 4
## 10379 TheSun 2020-01-09T15:02:57.000Z The Sun 3
## 10380 EveningStandard 2020-01-09T15:02:01.000Z Evening Standard 1
## 10381 MetroUK 2020-01-09T15:00:10.000Z Metro 1
## 10382 DailyMailUK 2020-01-09T15:00:09.000Z Daily Mail U.K. 1
## 10383 TheSun 2020-01-09T15:00:01.000Z The Sun 3
## 10384 DailyMirror 2020-01-09T14:59:00.000Z The Mirror 2
## 10385 guardian 2020-01-09T14:57:42.000Z The Guardian 5
## 10386 DailyMirror 2020-01-09T14:56:00.000Z The Mirror 2
## 10387 thetimes 2020-01-09T14:55:50.000Z The Times 28
## 10388 DailyMirror 2020-01-09T14:54:58.000Z The Mirror 3
## 10389 DailyMirror 2020-01-09T14:54:00.000Z The Mirror 4
## 10390 DailyMirror 2020-01-09T14:53:56.000Z The Mirror 0
## 10391 DailyMirror 2020-01-09T14:53:24.000Z The Mirror 5
## 10392 TheSun 2020-01-09T14:52:50.000Z The Sun 6
## 10393 DailyMirror 2020-01-09T14:50:48.000Z The Mirror 5
## 10394 EveningStandard 2020-01-09T14:50:46.000Z Evening Standard 1
## 10395 DailyMailUK 2020-01-09T14:50:04.000Z Daily Mail U.K. 17
## 10396 TheSun 2020-01-09T14:50:00.000Z The Sun 142
## 10397 EveningStandard 2020-01-09T14:49:55.000Z Evening Standard 0
## 10398 DailyMirror 2020-01-09T14:48:21.000Z The Mirror 6
## 10399 DailyMirror 2020-01-09T14:48:05.000Z The Mirror 5
## 10400 guardian 2020-01-09T14:47:59.000Z The Guardian 46
## 10401 guardian 2020-01-09T14:47:58.000Z The Guardian 13
## 10402 guardian 2020-01-09T14:47:58.000Z The Guardian 0
## 10403 DailyMirror 2020-01-09T14:47:57.000Z The Mirror 1
## 10404 guardian 2020-01-09T14:47:05.000Z The Guardian 5
## 10405 guardian 2020-01-09T14:47:04.000Z The Guardian 109
## 10406 DailyMirror 2020-01-09T14:45:43.000Z The Mirror 4
## 10407 DailyMirror 2020-01-09T14:45:13.000Z The Mirror 5
## 10408 Telegraph 2020-01-09T14:44:50.000Z The Telegraph 7
## 10409 EveningStandard 2020-01-09T14:42:56.000Z Evening Standard 0
## 10410 TheSun 2020-01-09T14:42:50.000Z The Sun 1
## 10411 DailyMailUK 2020-01-09T14:40:59.000Z Daily Mail U.K. 27
## 10412 TheSun 2020-01-09T14:40:56.000Z The Sun 2
## 10413 thetimes 2020-01-09T14:40:53.000Z The Times 2
## 10414 TheSun 2020-01-09T14:40:44.000Z The Sun 2
## 10415 DailyMailUK 2020-01-09T14:40:08.000Z Daily Mail U.K. 3
## 10416 TheSun 2020-01-09T14:40:00.000Z The Sun 6
## 10417 guardian 2020-01-09T14:38:40.000Z The Guardian 23
## 10418 guardian 2020-01-09T14:38:37.000Z The Guardian 23
## 10419 EveningStandard 2020-01-09T14:36:52.000Z Evening Standard 0
## 10420 DailyMirror 2020-01-09T14:35:52.000Z The Mirror 3
## 10421 DailyMirror 2020-01-09T14:34:00.000Z The Mirror 3
## 10422 TheSun 2020-01-09T14:32:28.000Z The Sun 23
## 10423 DailyMirror 2020-01-09T14:32:18.000Z The Mirror 3
## 10424 DailyMirror 2020-01-09T14:31:27.000Z The Mirror 1
## 10425 MetroUK 2020-01-09T14:30:15.000Z Metro 1
## 10426 DailyMirror 2020-01-09T14:30:00.000Z The Mirror 1
## 10427 TheSun 2020-01-09T14:30:00.000Z The Sun 39
## 10428 EveningStandard 2020-01-09T14:30:00.000Z Evening Standard 4
## 10429 DailyMailUK 2020-01-09T14:29:03.000Z Daily Mail U.K. 1
## 10430 DailyMirror 2020-01-09T14:29:00.000Z The Mirror 1
## 10431 guardian 2020-01-09T14:28:44.000Z The Guardian 15
## 10432 TheSun 2020-01-09T14:27:53.000Z The Sun 50
## 10433 DailyMirror 2020-01-09T14:27:43.000Z The Mirror 7
## 10434 DailyMirror 2020-01-09T14:27:18.000Z The Mirror 2
## 10435 thetimes 2020-01-09T14:26:08.000Z The Times 4
## 10436 EveningStandard 2020-01-09T14:26:06.000Z Evening Standard 0
## 10437 MetroUK 2020-01-09T14:25:02.000Z Metro 5
## 10438 DailyMirror 2020-01-09T14:23:01.000Z The Mirror 10
## 10439 TheSun 2020-01-09T14:22:09.000Z The Sun 1
## 10440 DailyMirror 2020-01-09T14:22:00.000Z The Mirror 5
## 10441 DailyMirror 2020-01-09T14:21:52.000Z The Mirror 1
## 10442 DailyMirror 2020-01-09T14:21:47.000Z The Mirror 3
## 10443 DailyMirror 2020-01-09T14:21:08.000Z The Mirror 5
## 10444 DailyMirror 2020-01-09T14:21:06.000Z The Mirror 4
## 10445 Telegraph 2020-01-09T14:20:19.000Z The Telegraph 5
## 10446 DailyMirror 2020-01-09T14:20:13.000Z The Mirror 6
## 10447 DailyMailUK 2020-01-09T14:20:02.000Z Daily Mail U.K. 4
## 10448 TheSun 2020-01-09T14:20:00.000Z The Sun 6
## 10449 DailyMirror 2020-01-09T14:20:00.000Z The Mirror 2
## 10450 DailyMirror 2020-01-09T14:19:20.000Z The Mirror 3
## 10451 DailyMirror 2020-01-09T14:19:02.000Z The Mirror 2
## 10452 DailyMirror 2020-01-09T14:19:00.000Z The Mirror 3
## 10453 guardian 2020-01-09T14:18:20.000Z The Guardian 2
## 10454 guardian 2020-01-09T14:18:19.000Z The Guardian 7
## 10455 guardian 2020-01-09T14:18:18.000Z The Guardian 16
## 10456 guardian 2020-01-09T14:18:18.000Z The Guardian 6
## 10457 guardian 2020-01-09T14:18:17.000Z The Guardian 1
## 10458 EveningStandard 2020-01-09T14:16:31.000Z Evening Standard 6
## 10459 DailyMirror 2020-01-09T14:16:17.000Z The Mirror 7
## 10460 DailyMirror 2020-01-09T14:16:00.000Z The Mirror 4
## 10461 EveningStandard 2020-01-09T14:15:23.000Z Evening Standard 11
## 10462 DailyMirror 2020-01-09T14:15:18.000Z The Mirror 7
## 10463 DailyMirror 2020-01-09T14:14:00.000Z The Mirror 3
## 10464 TheSun 2020-01-09T14:13:13.000Z The Sun 3
## 10465 EveningStandard 2020-01-09T14:12:13.000Z Evening Standard 0
## 10466 DailyMirror 2020-01-09T14:12:00.000Z The Mirror 0
## 10467 DailyMailUK 2020-01-09T14:10:05.000Z Daily Mail U.K. 4
## 10468 TheSun 2020-01-09T14:10:00.000Z The Sun 4
## 10469 DailyMirror 2020-01-09T14:09:00.000Z The Mirror 1
## 10470 guardian 2020-01-09T14:07:44.000Z The Guardian 5
## 10471 DailyMirror 2020-01-09T14:07:00.000Z The Mirror 0
## 10472 DailyMirror 2020-01-09T14:06:55.000Z The Mirror 3
## 10473 DailyMirror 2020-01-09T14:06:00.000Z The Mirror 3
## 10474 DailyMirror 2020-01-09T14:05:33.000Z The Mirror 3
## 10475 EveningStandard 2020-01-09T14:03:09.000Z Evening Standard 1
## 10476 TheSun 2020-01-09T14:03:02.000Z The Sun 0
## 10477 DailyMailUK 2020-01-09T14:02:47.000Z Daily Mail U.K. 31
## 10478 TheSun 2020-01-09T14:01:00.000Z The Sun 5
## 10479 MetroUK 2020-01-09T14:01:00.000Z Metro 1
## 10480 MetroUK 2020-01-09T14:00:06.000Z Metro 6
## 10481 TheSun 2020-01-09T14:00:01.000Z The Sun 6
## 10482 guardian 2020-01-09T14:00:01.000Z The Guardian 2
## 10483 Telegraph 2020-01-09T13:59:23.000Z The Telegraph 2
## 10484 Telegraph 2020-01-09T13:59:22.000Z The Telegraph 4
## 10485 MetroUK 2020-01-09T13:59:15.000Z Metro 1
## 10486 DailyMailUK 2020-01-09T13:59:05.000Z Daily Mail U.K. 8
## 10487 MetroUK 2020-01-09T13:58:00.000Z Metro 5
## 10488 DailyMirror 2020-01-09T13:57:00.000Z The Mirror 1
## 10489 guardian 2020-01-09T13:56:00.000Z The Guardian 3
## 10490 Telegraph 2020-01-09T13:55:00.000Z The Telegraph 1
## 10491 Telegraph 2020-01-09T13:54:56.000Z The Telegraph 8
## 10492 thetimes 2020-01-09T13:53:59.000Z The Times 3
## 10493 EveningStandard 2020-01-09T13:53:58.000Z Evening Standard 0
## 10494 DailyMirror 2020-01-09T13:52:59.000Z The Mirror 5
## 10495 TheSun 2020-01-09T13:52:54.000Z The Sun 1
## 10496 DailyMailUK 2020-01-09T13:50:08.000Z Daily Mail U.K. 8
## 10497 TheSun 2020-01-09T13:50:00.000Z The Sun 1
## 10498 DailyMirror 2020-01-09T13:49:00.000Z The Mirror 5
## 10499 guardian 2020-01-09T13:47:59.000Z The Guardian 118
## 10500 DailyMirror 2020-01-09T13:47:41.000Z The Mirror 10
## 10501 EveningStandard 2020-01-09T13:45:05.000Z Evening Standard 0
## 10502 TheSun 2020-01-09T13:42:49.000Z The Sun 0
## 10503 DailyMirror 2020-01-09T13:41:51.000Z The Mirror 3
## 10504 DailyMailUK 2020-01-09T13:40:06.000Z Daily Mail U.K. 5
## 10505 TheSun 2020-01-09T13:40:00.000Z The Sun 13
## 10506 Telegraph 2020-01-09T13:39:58.000Z The Telegraph 3
## 10507 thetimes 2020-01-09T13:38:55.000Z The Times 5
## 10508 DailyMirror 2020-01-09T13:38:00.000Z The Mirror 3
## 10509 guardian 2020-01-09T13:37:52.000Z The Guardian 56
## 10510 TheSun 2020-01-09T13:35:50.000Z The Sun 3
## 10511 EveningStandard 2020-01-09T13:35:42.000Z Evening Standard 0
## 10512 DailyMirror 2020-01-09T13:35:21.000Z The Mirror 8
## 10513 DailyMirror 2020-01-09T13:34:06.000Z The Mirror 4
## 10514 DailyMirror 2020-01-09T13:34:00.000Z The Mirror 1
## 10515 TheSun 2020-01-09T13:32:48.000Z The Sun 7
## 10516 DailyMirror 2020-01-09T13:32:02.000Z The Mirror 6
## 10517 DailyMirror 2020-01-09T13:31:54.000Z The Mirror 5
## 10518 DailyMailUK 2020-01-09T13:31:50.000Z Daily Mail U.K. 9
## 10519 DailyMailUK 2020-01-09T13:31:03.000Z Daily Mail U.K. 5
## 10520 MetroUK 2020-01-09T13:30:15.000Z Metro 2
## 10521 TheSun 2020-01-09T13:30:00.000Z The Sun 33
## 10522 guardian 2020-01-09T13:30:00.000Z The Guardian 4
## 10523 DailyMirror 2020-01-09T13:29:27.000Z The Mirror 5
## 10524 Telegraph 2020-01-09T13:28:05.000Z The Telegraph 19
## 10525 guardian 2020-01-09T13:27:38.000Z The Guardian 2
## 10526 guardian 2020-01-09T13:27:37.000Z The Guardian 13
## 10527 guardian 2020-01-09T13:27:36.000Z The Guardian 9
## 10528 guardian 2020-01-09T13:27:34.000Z The Guardian 13
## 10529 DailyMirror 2020-01-09T13:26:00.000Z The Mirror 2
## 10530 Telegraph 2020-01-09T13:25:45.000Z The Telegraph 4
## 10531 EveningStandard 2020-01-09T13:25:42.000Z Evening Standard 0
## 10532 DailyMirror 2020-01-09T13:25:13.000Z The Mirror 1
## 10533 DailyMirror 2020-01-09T13:24:00.000Z The Mirror 0
## 10534 DailyMirror 2020-01-09T13:23:47.000Z The Mirror 2
## 10535 thetimes 2020-01-09T13:22:43.000Z The Times 4
## 10536 TheSun 2020-01-09T13:22:41.000Z The Sun 18
## 10537 DailyMirror 2020-01-09T13:22:00.000Z The Mirror 4
## 10538 guardian 2020-01-09T13:20:49.000Z The Guardian 4
## 10539 DailyMailUK 2020-01-09T13:20:09.000Z Daily Mail U.K. 9
## 10540 TheSun 2020-01-09T13:20:00.000Z The Sun 13
## 10541 DailyMailUK 2020-01-09T13:17:53.000Z Daily Mail U.K. 3
## 10542 DailyMirror 2020-01-09T13:17:50.000Z The Mirror 2
## 10543 EveningStandard 2020-01-09T13:15:53.000Z Evening Standard 1
## 10544 MetroUK 2020-01-09T13:14:25.000Z Metro 3
## 10545 TheSun 2020-01-09T13:12:51.000Z The Sun 14
## 10546 MetroUK 2020-01-09T13:12:45.000Z Metro 111
## 10547 TheSun 2020-01-09T13:12:40.000Z The Sun 4
## 10548 DailyMirror 2020-01-09T13:12:29.000Z The Mirror 0
## 10549 DailyMirror 2020-01-09T13:12:00.000Z The Mirror 6
## 10550 DailyMailUK 2020-01-09T13:11:03.000Z Daily Mail U.K. 0
## 10551 guardian 2020-01-09T13:10:38.000Z The Guardian 76
## 10552 TheSun 2020-01-09T13:10:00.000Z The Sun 6
## 10553 DailyMirror 2020-01-09T13:09:00.000Z The Mirror 0
## 10554 DailyMirror 2020-01-09T13:09:00.000Z The Mirror 12
## 10555 DailyMirror 2020-01-09T13:06:48.000Z The Mirror 2
## 10556 Telegraph 2020-01-09T13:06:39.000Z The Telegraph 4
## 10557 DailyMirror 2020-01-09T13:06:00.000Z The Mirror 1
## 10558 thetimes 2020-01-09T13:05:43.000Z The Times 3
## 10559 TheSun 2020-01-09T13:05:13.000Z The Sun 2
## 10560 EveningStandard 2020-01-09T13:04:38.000Z Evening Standard 0
## 10561 DailyMirror 2020-01-09T13:02:52.000Z The Mirror 2
## 10562 TheSun 2020-01-09T13:02:40.000Z The Sun 4
## 10563 DailyMirror 2020-01-09T13:00:50.000Z The Mirror 5
## 10564 MetroUK 2020-01-09T13:00:07.000Z Metro 14
## 10565 TheSun 2020-01-09T13:00:00.000Z The Sun 3
## 10566 guardian 2020-01-09T13:00:00.000Z The Guardian 11
## 10567 guardian 2020-01-09T12:59:31.000Z The Guardian 5
## 10568 DailyMailUK 2020-01-09T12:59:19.000Z Daily Mail U.K. 6
## 10569 DailyMailUK 2020-01-09T12:59:03.000Z Daily Mail U.K. 3
## 10570 Telegraph 2020-01-09T12:57:36.000Z The Telegraph 7
## 10571 EveningStandard 2020-01-09T12:55:33.000Z Evening Standard 0
## 10572 DailyMirror 2020-01-09T12:54:28.000Z The Mirror 2
## 10573 DailyMailUK 2020-01-09T12:52:40.000Z Daily Mail U.K. 13
## 10574 TheSun 2020-01-09T12:52:18.000Z The Sun 10
## 10575 Telegraph 2020-01-09T12:52:12.000Z The Telegraph 2
## 10576 DailyMirror 2020-01-09T12:52:09.000Z The Mirror 4
## 10577 DailyMirror 2020-01-09T12:50:36.000Z The Mirror 0
## 10578 guardian 2020-01-09T12:50:16.000Z The Guardian 6
## 10579 DailyMailUK 2020-01-09T12:50:07.000Z Daily Mail U.K. 3
## 10580 TheSun 2020-01-09T12:50:00.000Z The Sun 73
## 10581 DailyMirror 2020-01-09T12:49:00.000Z The Mirror 1
## 10582 DailyMirror 2020-01-09T12:48:37.000Z The Mirror 6
## 10583 Telegraph 2020-01-09T12:48:15.000Z The Telegraph 5
## 10584 thetimes 2020-01-09T12:47:20.000Z The Times 1
## 10585 EveningStandard 2020-01-09T12:47:18.000Z Evening Standard 3
## 10586 DailyMirror 2020-01-09T12:45:22.000Z The Mirror 10
## 10587 DailyMirror 2020-01-09T12:45:00.000Z The Mirror 0
## 10588 DailyMirror 2020-01-09T12:44:53.000Z The Mirror 2
## 10589 Telegraph 2020-01-09T12:42:46.000Z The Telegraph 5
## 10590 DailyMirror 2020-01-09T12:42:34.000Z The Mirror 1
## 10591 TheSun 2020-01-09T12:42:15.000Z The Sun 5
## 10592 EveningStandard 2020-01-09T12:41:16.000Z Evening Standard 0
## 10593 guardian 2020-01-09T12:41:15.000Z The Guardian 44
## 10594 DailyMirror 2020-01-09T12:40:06.000Z The Mirror 9
## 10595 DailyMailUK 2020-01-09T12:40:02.000Z Daily Mail U.K. 10
## 10596 TheSun 2020-01-09T12:40:00.000Z The Sun 7
## 10597 DailyMirror 2020-01-09T12:36:00.000Z The Mirror 2
## 10598 EveningStandard 2020-01-09T12:34:20.000Z Evening Standard 7
## 10599 DailyMirror 2020-01-09T12:33:00.000Z The Mirror 1
## 10600 TheSun 2020-01-09T12:32:24.000Z The Sun 4
## 10601 guardian 2020-01-09T12:31:43.000Z The Guardian 3
## 10602 guardian 2020-01-09T12:31:43.000Z The Guardian 2
## 10603 guardian 2020-01-09T12:31:42.000Z The Guardian 14
## 10604 guardian 2020-01-09T12:31:41.000Z The Guardian 64
## 10605 guardian 2020-01-09T12:31:40.000Z The Guardian 2
## 10606 DailyMirror 2020-01-09T12:31:31.000Z The Mirror 13
## 10607 DailyMailUK 2020-01-09T12:31:03.000Z Daily Mail U.K. 22
## 10608 guardian 2020-01-09T12:31:02.000Z The Guardian 46
## 10609 thetimes 2020-01-09T12:30:27.000Z The Times 5
## 10610 DailyMirror 2020-01-09T12:30:16.000Z The Mirror 9
## 10611 MetroUK 2020-01-09T12:30:07.000Z Metro 4
## 10612 guardian 2020-01-09T12:30:00.000Z The Guardian 11
## 10613 EveningStandard 2020-01-09T12:30:00.000Z Evening Standard 4
## 10614 TheSun 2020-01-09T12:28:41.000Z The Sun 7
## 10615 DailyMirror 2020-01-09T12:28:18.000Z The Mirror 2
## 10616 guardian 2020-01-09T12:25:10.000Z The Guardian 8
## 10617 guardian 2020-01-09T12:24:00.000Z The Guardian 0
## 10618 Telegraph 2020-01-09T12:23:40.000Z The Telegraph 11
## 10619 TheSun 2020-01-09T12:22:35.000Z The Sun 6
## 10620 DailyMirror 2020-01-09T12:22:00.000Z The Mirror 5
## 10621 DailyMirror 2020-01-09T12:21:31.000Z The Mirror 5
## 10622 guardian 2020-01-09T12:20:38.000Z The Guardian 23
## 10623 EveningStandard 2020-01-09T12:20:36.000Z Evening Standard 2
## 10624 TheSun 2020-01-09T12:20:00.000Z The Sun 30
## 10625 DailyMailUK 2020-01-09T12:18:57.000Z Daily Mail U.K. 13
## 10626 DailyMirror 2020-01-09T12:18:08.000Z The Mirror 2
## 10627 DailyMirror 2020-01-09T12:17:14.000Z The Mirror 1
## 10628 DailyMirror 2020-01-09T12:16:27.000Z The Mirror 6
## 10629 DailyMailUK 2020-01-09T12:15:20.000Z Daily Mail U.K. 20
## 10630 MetroUK 2020-01-09T12:14:18.000Z Metro 6
## 10631 TheSun 2020-01-09T12:13:47.000Z The Sun 5
## 10632 MetroUK 2020-01-09T12:13:10.000Z Metro 2
## 10633 DailyMirror 2020-01-09T12:12:00.000Z The Mirror 0
## 10634 guardian 2020-01-09T12:10:59.000Z The Guardian 10
## 10635 EveningStandard 2020-01-09T12:10:58.000Z Evening Standard 1
## 10636 Telegraph 2020-01-09T12:10:17.000Z The Telegraph 15
## 10637 DailyMailUK 2020-01-09T12:10:03.000Z Daily Mail U.K. 1
## 10638 TheSun 2020-01-09T12:10:00.000Z The Sun 51
## 10639 DailyMailUK 2020-01-09T12:09:47.000Z Daily Mail U.K. 26
## 10640 DailyMirror 2020-01-09T12:09:00.000Z The Mirror 0
## 10641 DailyMirror 2020-01-09T12:06:00.000Z The Mirror 0
## 10642 Telegraph 2020-01-09T12:03:37.000Z The Telegraph 5
## 10643 TheSun 2020-01-09T12:03:05.000Z The Sun 4
## 10644 thetimes 2020-01-09T12:02:08.000Z The Times 6
## 10645 Telegraph 2020-01-09T12:00:06.000Z The Telegraph 7
## 10646 MetroUK 2020-01-09T12:00:04.000Z Metro 3
## 10647 guardian 2020-01-09T12:00:00.000Z The Guardian 6
## 10648 TheSun 2020-01-09T12:00:00.000Z The Sun 12
## 10649 DailyMailUK 2020-01-09T11:59:41.000Z Daily Mail U.K. 290
## 10650 EveningStandard 2020-01-09T11:59:06.000Z Evening Standard 1
## 10651 DailyMailUK 2020-01-09T11:59:04.000Z Daily Mail U.K. 19
## 10652 DailyMirror 2020-01-09T11:59:00.000Z The Mirror 6
## 10653 DailyMailUK 2020-01-09T11:55:49.000Z Daily Mail U.K. 8
## 10654 DailyMirror 2020-01-09T11:55:06.000Z The Mirror 4
## 10655 DailyMirror 2020-01-09T11:53:45.000Z The Mirror 4
## 10656 DailyMailUK 2020-01-09T11:52:52.000Z Daily Mail U.K. 8
## 10657 guardian 2020-01-09T11:52:30.000Z The Guardian 185
## 10658 TheSun 2020-01-09T11:52:11.000Z The Sun 2
## 10659 DailyMirror 2020-01-09T11:52:10.000Z The Mirror 3
## 10660 DailyMailUK 2020-01-09T11:52:03.000Z Daily Mail U.K. 3
## 10661 DailyMirror 2020-01-09T11:51:44.000Z The Mirror 0
## 10662 thetimes 2020-01-09T11:50:45.000Z The Times 11
## 10663 DailyMailUK 2020-01-09T11:50:07.000Z Daily Mail U.K. 12
## 10664 TheSun 2020-01-09T11:50:00.000Z The Sun 6
## 10665 DailyMirror 2020-01-09T11:49:52.000Z The Mirror 10
## 10666 guardian 2020-01-09T11:48:06.000Z The Guardian 2
## 10667 guardian 2020-01-09T11:47:05.000Z The Guardian 22
## 10668 EveningStandard 2020-01-09T11:47:02.000Z Evening Standard 0
## 10669 DailyMirror 2020-01-09T11:47:00.000Z The Mirror 1
## 10670 DailyMirror 2020-01-09T11:46:58.000Z The Mirror 2
## 10671 DailyMirror 2020-01-09T11:46:52.000Z The Mirror 4
## 10672 DailyMirror 2020-01-09T11:46:29.000Z The Mirror 2
## 10673 TheSun 2020-01-09T11:45:44.000Z The Sun 7
## 10674 MetroUK 2020-01-09T11:45:08.000Z Metro 11
## 10675 TheSun 2020-01-09T11:42:57.000Z The Sun 6
## 10676 DailyMirror 2020-01-09T11:42:07.000Z The Mirror 4
## 10677 DailyMirror 2020-01-09T11:41:58.000Z The Mirror 0
## 10678 DailyMailUK 2020-01-09T11:40:31.000Z Daily Mail U.K. 23
## 10679 DailyMailUK 2020-01-09T11:40:04.000Z Daily Mail U.K. 0
## 10680 DailyMirror 2020-01-09T11:40:00.000Z The Mirror 1
## 10681 TheSun 2020-01-09T11:40:00.000Z The Sun 3
## 10682 DailyMirror 2020-01-09T11:40:00.000Z The Mirror 1
## 10683 DailyMirror 2020-01-09T11:39:00.000Z The Mirror 4
## 10684 DailyMirror 2020-01-09T11:38:49.000Z The Mirror 4
## 10685 DailyMirror 2020-01-09T11:37:39.000Z The Mirror 10
## 10686 guardian 2020-01-09T11:37:09.000Z The Guardian 2
## 10687 Telegraph 2020-01-09T11:37:05.000Z The Telegraph 8
## 10688 DailyMirror 2020-01-09T11:33:00.000Z The Mirror 1
## 10689 TheSun 2020-01-09T11:32:44.000Z The Sun 2
## 10690 EveningStandard 2020-01-09T11:32:43.000Z Evening Standard 0
## 10691 thetimes 2020-01-09T11:31:45.000Z The Times 2
## 10692 DailyMirror 2020-01-09T11:31:09.000Z The Mirror 1
## 10693 guardian 2020-01-09T11:30:51.000Z The Guardian 27
## 10694 guardian 2020-01-09T11:30:50.000Z The Guardian 12
## 10695 guardian 2020-01-09T11:30:50.000Z The Guardian 9
## 10696 DailyMailUK 2020-01-09T11:30:09.000Z Daily Mail U.K. 13
## 10697 MetroUK 2020-01-09T11:30:07.000Z Metro 14
## 10698 TheSun 2020-01-09T11:30:00.000Z The Sun 27
## 10699 guardian 2020-01-09T11:30:00.000Z The Guardian 3
## 10700 DailyMirror 2020-01-09T11:27:56.000Z The Mirror 6
## 10701 DailyMirror 2020-01-09T11:27:29.000Z The Mirror 9
## 10702 guardian 2020-01-09T11:26:43.000Z The Guardian 5
## 10703 TheSun 2020-01-09T11:22:32.000Z The Sun 3
## 10704 TheSun 2020-01-09T11:20:21.000Z The Sun 3
## 10705 DailyMailUK 2020-01-09T11:20:04.000Z Daily Mail U.K. 1
## 10706 TheSun 2020-01-09T11:20:00.000Z The Sun 2
## 10707 DailyMirror 2020-01-09T11:19:49.000Z The Mirror 4
## 10708 EveningStandard 2020-01-09T11:19:32.000Z Evening Standard 0
## 10709 DailyMirror 2020-01-09T11:18:36.000Z The Mirror 3
## 10710 DailyMirror 2020-01-09T11:18:05.000Z The Mirror 5
## 10711 DailyMirror 2020-01-09T11:16:44.000Z The Mirror 3
## 10712 guardian 2020-01-09T11:16:36.000Z The Guardian 4
## 10713 DailyMirror 2020-01-09T11:16:00.000Z The Mirror 7
## 10714 Telegraph 2020-01-09T11:13:32.000Z The Telegraph 3
## 10715 TheSun 2020-01-09T11:12:44.000Z The Sun 4
## 10716 DailyMirror 2020-01-09T11:10:25.000Z The Mirror 1
## 10717 DailyMailUK 2020-01-09T11:10:06.000Z Daily Mail U.K. 33
## 10718 TheSun 2020-01-09T11:10:00.000Z The Sun 4
## 10719 Telegraph 2020-01-09T11:09:46.000Z The Telegraph 12
## 10720 guardian 2020-01-09T11:09:24.000Z The Guardian 55
## 10721 DailyMirror 2020-01-09T11:08:57.000Z The Mirror 4
## 10722 DailyMirror 2020-01-09T11:08:22.000Z The Mirror 1
## 10723 guardian 2020-01-09T11:07:48.000Z The Guardian 0
## 10724 EveningStandard 2020-01-09T11:07:47.000Z Evening Standard 2
## 10725 DailyMirror 2020-01-09T11:07:38.000Z The Mirror 9
## 10726 DailyMirror 2020-01-09T11:07:35.000Z The Mirror 10
## 10727 DailyMirror 2020-01-09T11:06:25.000Z The Mirror 5
## 10728 DailyMirror 2020-01-09T11:06:00.000Z The Mirror 0
## 10729 DailyMirror 2020-01-09T11:04:26.000Z The Mirror 1
## 10730 Telegraph 2020-01-09T11:02:48.000Z The Telegraph 6
## 10731 TheSun 2020-01-09T11:02:34.000Z The Sun 12
## 10732 Telegraph 2020-01-09T11:01:55.000Z The Telegraph 10
## 10733 thetimes 2020-01-09T11:01:39.000Z The Times 5
## 10734 DailyMailUK 2020-01-09T11:00:11.000Z Daily Mail U.K. 7
## 10735 MetroUK 2020-01-09T11:00:06.000Z Metro 0
## 10736 TheSun 2020-01-09T11:00:00.000Z The Sun 1
## 10737 guardian 2020-01-09T11:00:00.000Z The Guardian 4
## 10738 DailyMirror 2020-01-09T10:59:54.000Z The Mirror 3
## 10739 guardian 2020-01-09T10:57:37.000Z The Guardian 22
## 10740 DailyMirror 2020-01-09T10:57:30.000Z The Mirror 1
## 10741 DailyMirror 2020-01-09T10:56:54.000Z The Mirror 12
## 10742 DailyMirror 2020-01-09T10:56:24.000Z The Mirror 7
## 10743 EveningStandard 2020-01-09T10:55:36.000Z Evening Standard 1
## 10744 DailyMirror 2020-01-09T10:52:39.000Z The Mirror 7
## 10745 TheSun 2020-01-09T10:52:39.000Z The Sun 4
## 10746 DailyMirror 2020-01-09T10:51:12.000Z The Mirror 9
## 10747 DailyMailUK 2020-01-09T10:50:04.000Z Daily Mail U.K. 10
## 10748 TheSun 2020-01-09T10:50:00.000Z The Sun 4
## 10749 thetimes 2020-01-09T10:49:59.000Z The Times 2
## 10750 DailyMirror 2020-01-09T10:48:47.000Z The Mirror 3
## 10751 Telegraph 2020-01-09T10:48:44.000Z The Telegraph 3
## 10752 DailyMailUK 2020-01-09T10:47:00.000Z Daily Mail U.K. 2
## 10753 guardian 2020-01-09T10:46:43.000Z The Guardian 10
## 10754 EveningStandard 2020-01-09T10:45:00.000Z Evening Standard 7
## 10755 DailyMirror 2020-01-09T10:43:36.000Z The Mirror 2
## 10756 TheSun 2020-01-09T10:42:53.000Z The Sun 1
## 10757 EveningStandard 2020-01-09T10:42:49.000Z Evening Standard 2
## 10758 MetroUK 2020-01-09T10:40:39.000Z Metro 3
## 10759 DailyMailUK 2020-01-09T10:40:02.000Z Daily Mail U.K. 6
## 10760 TheSun 2020-01-09T10:40:00.000Z The Sun 7
## 10761 DailyMirror 2020-01-09T10:40:00.000Z The Mirror 1
## 10762 DailyMirror 2020-01-09T10:40:00.000Z The Mirror 3
## 10763 DailyMirror 2020-01-09T10:39:20.000Z The Mirror 6
## 10764 TheSun 2020-01-09T10:39:09.000Z The Sun 2
## 10765 DailyMirror 2020-01-09T10:39:00.000Z The Mirror 7
## 10766 DailyMirror 2020-01-09T10:38:44.000Z The Mirror 1
## 10767 thetimes 2020-01-09T10:38:38.000Z The Times 12
## 10768 DailyMirror 2020-01-09T10:38:00.000Z The Mirror 5
## 10769 guardian 2020-01-09T10:36:33.000Z The Guardian 6
## 10770 guardian 2020-01-09T10:36:32.000Z The Guardian 2
## 10771 DailyMirror 2020-01-09T10:36:15.000Z The Mirror 6
## 10772 MetroUK 2020-01-09T10:35:35.000Z Metro 3
## 10773 DailyMirror 2020-01-09T10:35:29.000Z The Mirror 3
## 10774 DailyMirror 2020-01-09T10:33:45.000Z The Mirror 2
## 10775 TheSun 2020-01-09T10:32:53.000Z The Sun 3
## 10776 DailyMirror 2020-01-09T10:32:32.000Z The Mirror 4
## 10777 DailyMirror 2020-01-09T10:32:00.000Z The Mirror 6
## 10778 thetimes 2020-01-09T10:31:52.000Z The Times 4
## 10779 EveningStandard 2020-01-09T10:30:50.000Z Evening Standard 1
## 10780 DailyMirror 2020-01-09T10:30:34.000Z The Mirror 4
## 10781 DailyMailUK 2020-01-09T10:30:09.000Z Daily Mail U.K. 58
## 10782 MetroUK 2020-01-09T10:30:05.000Z Metro 0
## 10783 TheSun 2020-01-09T10:30:00.000Z The Sun 18
## 10784 guardian 2020-01-09T10:29:29.000Z The Guardian 88
## 10785 Telegraph 2020-01-09T10:25:04.000Z The Telegraph 2
## 10786 DailyMirror 2020-01-09T10:24:51.000Z The Mirror 10
## 10787 DailyMirror 2020-01-09T10:23:00.000Z The Mirror 2
## 10788 TheSun 2020-01-09T10:22:57.000Z The Sun 2
## 10789 DailyMirror 2020-01-09T10:20:45.000Z The Mirror 5
## 10790 DailyMailUK 2020-01-09T10:20:05.000Z Daily Mail U.K. 24
## 10791 TheSun 2020-01-09T10:20:00.000Z The Sun 54
## 10792 DailyMirror 2020-01-09T10:17:01.000Z The Mirror 5
## 10793 DailyMailUK 2020-01-09T10:16:34.000Z Daily Mail U.K. 7
## 10794 DailyMailUK 2020-01-09T10:16:29.000Z Daily Mail U.K. 3
## 10795 Telegraph 2020-01-09T10:16:22.000Z The Telegraph 8
## 10796 DailyMailUK 2020-01-09T10:15:32.000Z Daily Mail U.K. 9
## 10797 EveningStandard 2020-01-09T10:15:04.000Z Evening Standard 2
## 10798 DailyMirror 2020-01-09T10:15:00.000Z The Mirror 13
## 10799 Telegraph 2020-01-09T10:14:09.000Z The Telegraph 0
## 10800 DailyMirror 2020-01-09T10:13:34.000Z The Mirror 1
## 10801 TheSun 2020-01-09T10:12:57.000Z The Sun 2
## 10802 guardian 2020-01-09T10:10:27.000Z The Guardian 52
## 10803 guardian 2020-01-09T10:10:26.000Z The Guardian 3
## 10804 DailyMailUK 2020-01-09T10:10:04.000Z Daily Mail U.K. 2
## 10805 TheSun 2020-01-09T10:10:00.000Z The Sun 14
## 10806 Telegraph 2020-01-09T10:09:09.000Z The Telegraph 3
## 10807 DailyMirror 2020-01-09T10:06:30.000Z The Mirror 2
## 10808 Telegraph 2020-01-09T10:03:04.000Z The Telegraph 2
## 10809 TheSun 2020-01-09T10:03:02.000Z The Sun 4
## 10810 TheSun 2020-01-09T10:02:39.000Z The Sun 2
## 10811 DailyMirror 2020-01-09T10:02:13.000Z The Mirror 5
## 10812 DailyMirror 2020-01-09T10:01:54.000Z The Mirror 4
## 10813 DailyMailUK 2020-01-09T10:01:54.000Z Daily Mail U.K. 339
## 10814 thetimes 2020-01-09T10:01:06.000Z The Times 14
## 10815 DailyMailUK 2020-01-09T10:00:08.000Z Daily Mail U.K. 17
## 10816 MetroUK 2020-01-09T10:00:07.000Z Metro 1
## 10817 guardian 2020-01-09T10:00:00.000Z The Guardian 2
## 10818 TheSun 2020-01-09T10:00:00.000Z The Sun 10
## 10819 EveningStandard 2020-01-09T09:59:59.000Z Evening Standard 1
## 10820 DailyMirror 2020-01-09T09:58:59.000Z The Mirror 0
## 10821 DailyMirror 2020-01-09T09:58:00.000Z The Mirror 2
## 10822 TheSun 2020-01-09T09:53:04.000Z The Sun 18
## 10823 guardian 2020-01-09T09:51:08.000Z The Guardian 92
## 10824 DailyMailUK 2020-01-09T09:50:03.000Z Daily Mail U.K. 5
## 10825 TheSun 2020-01-09T09:50:00.000Z The Sun 34
## 10826 DailyMirror 2020-01-09T09:46:12.000Z The Mirror 4
## 10827 EveningStandard 2020-01-09T09:45:14.000Z Evening Standard 0
## 10828 TheSun 2020-01-09T09:42:16.000Z The Sun 3
## 10829 TheSun 2020-01-09T09:41:22.000Z The Sun 1
## 10830 guardian 2020-01-09T09:41:19.000Z The Guardian 6
## 10831 guardian 2020-01-09T09:41:18.000Z The Guardian 23
## 10832 guardian 2020-01-09T09:41:17.000Z The Guardian 7
## 10833 guardian 2020-01-09T09:41:17.000Z The Guardian 16
## 10834 DailyMirror 2020-01-09T09:40:25.000Z The Mirror 4
## 10835 DailyMirror 2020-01-09T09:40:22.000Z The Mirror 5
## 10836 Telegraph 2020-01-09T09:40:21.000Z The Telegraph 9
## 10837 MetroUK 2020-01-09T09:40:05.000Z Metro 9
## 10838 DailyMirror 2020-01-09T09:40:00.000Z The Mirror 0
## 10839 TheSun 2020-01-09T09:40:00.000Z The Sun 14
## 10840 DailyMirror 2020-01-09T09:40:00.000Z The Mirror 1
## 10841 DailyMailUK 2020-01-09T09:39:04.000Z Daily Mail U.K. 4
## 10842 DailyMirror 2020-01-09T09:38:14.000Z The Mirror 4
## 10843 DailyMirror 2020-01-09T09:37:17.000Z The Mirror 7
## 10844 thetimes 2020-01-09T09:37:08.000Z The Times 17
## 10845 thetimes 2020-01-09T09:32:33.000Z The Times 9
## 10846 TheSun 2020-01-09T09:32:23.000Z The Sun 3
## 10847 EveningStandard 2020-01-09T09:30:25.000Z Evening Standard 0
## 10848 DailyMailUK 2020-01-09T09:30:10.000Z Daily Mail U.K. 0
## 10849 guardian 2020-01-09T09:30:00.000Z The Guardian 8
## 10850 TheSun 2020-01-09T09:30:00.000Z The Sun 3
## 10851 DailyMirror 2020-01-09T09:28:17.000Z The Mirror 2
## 10852 DailyMirror 2020-01-09T09:28:04.000Z The Mirror 2
## 10853 MetroUK 2020-01-09T09:27:46.000Z Metro 6
## 10854 MetroUK 2020-01-09T09:27:21.000Z Metro 0
## 10855 DailyMailUK 2020-01-09T09:25:06.000Z Daily Mail U.K. 2
## 10856 Telegraph 2020-01-09T09:24:51.000Z The Telegraph 17
## 10857 DailyMirror 2020-01-09T09:23:50.000Z The Mirror 4
## 10858 TheSun 2020-01-09T09:22:27.000Z The Sun 2
## 10859 DailyMirror 2020-01-09T20:45:00.000Z The Mirror 8
## 10860 DailyMirror 2020-01-09T20:44:44.000Z The Mirror 2
## 10861 TheSun 2020-01-09T20:44:29.000Z The Sun 1
## 10862 DailyMirror 2020-01-09T20:44:00.000Z The Mirror 2
## 10863 TheSun 2020-01-09T20:42:09.000Z The Sun 6
## 10864 DailyMirror 2020-01-09T20:42:02.000Z The Mirror 7
## 10865 DailyMirror 2020-01-09T20:41:18.000Z The Mirror 5
## 10866 DailyMailUK 2020-01-09T20:41:06.000Z Daily Mail U.K. 12
## 10867 guardian 2020-01-09T20:40:25.000Z The Guardian 10
## 10868 guardian 2020-01-09T20:40:23.000Z The Guardian 11
## 10869 guardian 2020-01-09T20:40:22.000Z The Guardian 34
## 10870 TheSun 2020-01-09T20:40:08.000Z The Sun 5
## 10871 DailyMirror 2020-01-09T20:40:00.000Z The Mirror 3
## 10872 TheSun 2020-01-09T20:40:00.000Z The Sun 2
## 10873 DailyMirror 2020-01-09T20:39:00.000Z The Mirror 5
## 10874 TheSun 2020-01-09T20:38:37.000Z The Sun 3
## 10875 EveningStandard 2020-01-09T20:38:22.000Z Evening Standard 6
## 10876 guardian 2020-01-09T20:38:12.000Z The Guardian 4
## 10877 thetimes 2020-01-09T20:37:18.000Z The Times 66
## 10878 DailyMirror 2020-01-09T20:37:00.000Z The Mirror 2
## 10879 EveningStandard 2020-01-09T20:36:12.000Z Evening Standard 2
## 10880 DailyMirror 2020-01-09T20:36:00.000Z The Mirror 0
## 10881 Telegraph 2020-01-09T20:34:18.000Z The Telegraph 7
## 10882 DailyMirror 2020-01-09T20:33:24.000Z The Mirror 3
## 10883 TheSun 2020-01-09T20:32:17.000Z The Sun 2
## 10884 DailyMirror 2020-01-09T20:31:29.000Z The Mirror 5
## 10885 DailyMirror 2020-01-09T20:31:00.000Z The Mirror 0
## 10886 DailyMirror 2020-01-09T20:31:00.000Z The Mirror 1
## 10887 TheSun 2020-01-09T20:30:20.000Z The Sun 2
## 10888 MetroUK 2020-01-09T20:30:12.000Z Metro 2
## 10889 TheSun 2020-01-09T20:30:00.000Z The Sun 4
## 10890 guardian 2020-01-09T20:30:00.000Z The Guardian 1
## 10891 DailyMirror 2020-01-09T20:29:02.000Z The Mirror 2
## 10892 DailyMirror 2020-01-09T20:29:00.000Z The Mirror 1
## 10893 EveningStandard 2020-01-09T20:26:20.000Z Evening Standard 0
## 10894 DailyMirror 2020-01-09T20:26:00.000Z The Mirror 2
## 10895 TheSun 2020-01-09T20:23:46.000Z The Sun 1
## 10896 guardian 2020-01-09T20:23:22.000Z The Guardian 24
## 10897 TheSun 2020-01-09T20:22:23.000Z The Sun 3
## 10898 DailyMirror 2020-01-09T20:21:36.000Z The Mirror 3
## 10899 TheSun 2020-01-09T20:20:32.000Z The Sun 27
## 10900 Telegraph 2020-01-09T20:20:26.000Z The Telegraph 1
## 10901 DailyMailUK 2020-01-09T20:20:05.000Z Daily Mail U.K. 48
## 10902 TheSun 2020-01-09T20:20:00.000Z The Sun 4
## 10903 EveningStandard 2020-01-09T20:17:29.000Z Evening Standard 9
## 10904 DailyMirror 2020-01-09T20:17:06.000Z The Mirror 1
## 10905 TheSun 2020-01-09T20:17:04.000Z The Sun 2
## 10906 TheSun 2020-01-09T20:15:57.000Z The Sun 0
## 10907 DailyMirror 2020-01-09T20:15:38.000Z The Mirror 5
## 10908 guardian 2020-01-09T20:14:35.000Z The Guardian 7
## 10909 TheSun 2020-01-09T20:13:49.000Z The Sun 2
## 10910 DailyMirror 2020-01-09T20:13:00.000Z The Mirror 2
## 10911 DailyMirror 2020-01-09T20:13:00.000Z The Mirror 3
## 10912 TheSun 2020-01-09T20:12:34.000Z The Sun 1
## 10913 guardian 2020-01-09T20:11:35.000Z The Guardian 1
## 10914 DailyMirror 2020-01-09T20:11:21.000Z The Mirror 0
## 10915 TheSun 2020-01-09T20:10:00.000Z The Sun 12
## 10916 EveningStandard 2020-01-09T20:07:36.000Z Evening Standard 1
## 10917 DailyMirror 2020-01-09T20:07:00.000Z The Mirror 1
## 10918 DailyMirror 2020-01-09T20:06:25.000Z The Mirror 2
## 10919 DailyMirror 2020-01-09T20:06:00.000Z The Mirror 2
## 10920 Telegraph 2020-01-09T20:05:41.000Z The Telegraph 2
## 10921 TheSun 2020-01-09T20:02:41.000Z The Sun 1
## 10922 guardian 2020-01-09T20:02:14.000Z The Guardian 26
## 10923 thetimes 2020-01-09T20:00:50.000Z The Times 7
## 10924 MetroUK 2020-01-09T20:00:14.000Z Metro 8
## 10925 DailyMailUK 2020-01-09T20:00:07.000Z Daily Mail U.K. 4
## 10926 TheSun 2020-01-09T20:00:00.000Z The Sun 3
## 10927 DailyMirror 2020-01-09T20:00:00.000Z The Mirror 1
## 10928 DailyMirror 2020-01-09T20:00:00.000Z The Mirror 1
## 10929 EveningStandard 2020-01-09T19:58:41.000Z Evening Standard 0
## 10930 guardian 2020-01-09T19:56:45.000Z The Guardian 1
## 10931 DailyMirror 2020-01-09T19:55:16.000Z The Mirror 6
## 10932 DailyMirror 2020-01-09T19:55:00.000Z The Mirror 4
## 10933 TheSun 2020-01-09T19:54:46.000Z The Sun 0
## 10934 DailyMirror 2020-01-09T19:53:37.000Z The Mirror 3
## 10935 EveningStandard 2020-01-09T19:53:35.000Z Evening Standard 2
## 10936 DailyMirror 2020-01-09T19:53:32.000Z The Mirror 0
## 10937 TheSun 2020-01-09T19:52:50.000Z The Sun 0
## 10938 DailyMirror 2020-01-09T19:52:00.000Z The Mirror 4
## 10939 Telegraph 2020-01-09T19:51:50.000Z The Telegraph 5
## 10940 DailyMirror 2020-01-09T19:51:00.000Z The Mirror 3
## 10941 TheSun 2020-01-09T19:50:00.000Z The Sun 14
## 10942 DailyMirror 2020-01-09T19:50:00.000Z The Mirror 1
## 10943 DailyMirror 2020-01-09T19:48:00.000Z The Mirror 4
## 10944 EveningStandard 2020-01-09T19:47:55.000Z Evening Standard 1
## 10945 guardian 2020-01-09T19:47:47.000Z The Guardian 11
## 10946 guardian 2020-01-09T19:47:46.000Z The Guardian 10
## 10947 guardian 2020-01-09T19:47:45.000Z The Guardian 24
## 10948 guardian 2020-01-09T19:47:44.000Z The Guardian 11
## 10949 guardian 2020-01-09T19:47:42.000Z The Guardian 14
## 10950 guardian 2020-01-09T19:47:41.000Z The Guardian 2
## 10951 guardian 2020-01-09T19:47:39.000Z The Guardian 3
## 10952 guardian 2020-01-09T19:47:38.000Z The Guardian 2
## 10953 guardian 2020-01-09T19:47:37.000Z The Guardian 16
## 10954 TheSun 2020-01-09T19:46:52.000Z The Sun 5
## 10955 DailyMirror 2020-01-09T19:45:00.000Z The Mirror 5
## 10956 DailyMirror 2020-01-09T19:44:00.000Z The Mirror 8
## 10957 guardian 2020-01-09T19:43:04.000Z The Guardian 5
## 10958 DailyMirror 2020-01-09T19:43:00.000Z The Mirror 1
## 10959 TheSun 2020-01-09T19:43:00.000Z The Sun 4
## 10960 TheSun 2020-01-09T19:40:00.000Z The Sun 4
## 10961 DailyMirror 2020-01-09T19:40:00.000Z The Mirror 7
## 10962 DailyMirror 2020-01-09T19:39:00.000Z The Mirror 4
## 10963 DailyMirror 2020-01-09T19:39:00.000Z The Mirror 3
## 10964 DailyMailUK 2020-01-09T19:38:05.000Z Daily Mail U.K. 7
## 10965 TheSun 2020-01-09T19:38:04.000Z The Sun 0
## 10966 EveningStandard 2020-01-09T19:38:03.000Z Evening Standard 2
## 10967 DailyMirror 2020-01-09T19:35:00.000Z The Mirror 2
## 10968 Telegraph 2020-01-09T19:34:12.000Z The Telegraph 3
## 10969 DailyMirror 2020-01-09T19:34:00.000Z The Mirror 7
## 10970 guardian 2020-01-09T19:33:08.000Z The Guardian 76
## 10971 TheSun 2020-01-09T19:32:11.000Z The Sun 3
## 10972 DailyMirror 2020-01-09T19:31:49.000Z The Mirror 2
## 10973 TheSun 2020-01-09T19:30:54.000Z The Sun 0
## 10974 MetroUK 2020-01-09T19:30:15.000Z Metro 1
## 10975 TheSun 2020-01-09T19:30:00.000Z The Sun 3
## 10976 DailyMirror 2020-01-09T19:29:00.000Z The Mirror 1
## 10977 EveningStandard 2020-01-09T19:28:13.000Z Evening Standard 3
## 10978 DailyMirror 2020-01-09T19:27:00.000Z The Mirror 4
## 10979 DailyMirror 2020-01-09T19:26:17.000Z The Mirror 7
## 10980 DailyMirror 2020-01-09T19:26:00.000Z The Mirror 2
## 10981 TheSun 2020-01-09T19:25:11.000Z The Sun 2
## 10982 TheSun 2020-01-09T19:25:02.000Z The Sun 3
## 10983 TheSun 2020-01-09T19:24:55.000Z The Sun 1
## 10984 DailyMirror 2020-01-09T19:24:54.000Z The Mirror 2
## 10985 thetimes 2020-01-09T19:24:20.000Z The Times 0
## 10986 TheSun 2020-01-09T19:22:23.000Z The Sun 0
## 10987 EveningStandard 2020-01-09T19:21:49.000Z Evening Standard 1
## 10988 DailyMirror 2020-01-09T19:21:00.000Z The Mirror 1
## 10989 DailyMailUK 2020-01-09T19:20:12.000Z Daily Mail U.K. 17
## 10990 TheSun 2020-01-09T19:20:00.000Z The Sun 23
## 10991 guardian 2020-01-09T19:19:58.000Z The Guardian 6
## 10992 DailyMailUK 2020-01-09T19:19:50.000Z Daily Mail U.K. 7
## 10993 Telegraph 2020-01-09T19:19:23.000Z The Telegraph 3
## 10994 EveningStandard 2020-01-09T19:19:20.000Z Evening Standard 2
## 10995 TheSun 2020-01-09T19:19:16.000Z The Sun 0
## 10996 TheSun 2020-01-09T19:16:55.000Z The Sun 1
## 10997 TheSun 2020-01-09T19:15:27.000Z The Sun 7
## 10998 DailyMirror 2020-01-09T19:14:45.000Z The Mirror 10
## 10999 TheSun 2020-01-09T19:12:24.000Z The Sun 0
## 11000 DailyMirror 2020-01-09T19:12:00.000Z The Mirror 3
## 11001 DailyMirror 2020-01-09T19:11:30.000Z The Mirror 3
## 11002 EveningStandard 2020-01-09T19:10:34.000Z Evening Standard 2
## 11003 TheSun 2020-01-09T19:10:00.000Z The Sun 52
## 11004 DailyMirror 2020-01-09T19:09:00.000Z The Mirror 2
## 11005 Telegraph 2020-01-09T19:06:22.000Z The Telegraph 9
## 11006 EveningStandard 2020-01-09T19:06:17.000Z Evening Standard 0
## 11007 TheSun 2020-01-09T19:02:44.000Z The Sun 2
## 11008 TheSun 2020-01-09T19:01:21.000Z The Sun 1
## 11009 Telegraph 2020-01-09T19:00:21.000Z The Telegraph 13
## 11010 MetroUK 2020-01-09T19:00:12.000Z Metro 2
## 11011 DailyMailUK 2020-01-09T19:00:08.000Z Daily Mail U.K. 6
## 11012 DailyMirror 2020-01-09T19:00:01.000Z The Mirror 204
## 11013 TheSun 2020-01-09T19:00:00.000Z The Sun 2
## 11014 guardian 2020-01-09T19:00:00.000Z The Guardian 4
## 11015 EveningStandard 2020-01-09T18:55:24.000Z Evening Standard 2
## 11016 DailyMirror 2020-01-09T18:55:00.000Z The Mirror 2
## 11017 TheSun 2020-01-09T18:52:29.000Z The Sun 2
## 11018 guardian 2020-01-09T18:52:13.000Z The Guardian 17
## 11019 DailyMirror 2020-01-09T18:52:00.000Z The Mirror 0
## 11020 DailyMirror 2020-01-09T18:52:00.000Z The Mirror 4
## 11021 thetimes 2020-01-09T18:51:29.000Z The Times 0
## 11022 guardian 2020-01-09T18:51:28.000Z The Guardian 7
## 11023 DailyMirror 2020-01-09T18:51:00.000Z The Mirror 1
## 11024 DailyMirror 2020-01-09T18:50:00.000Z The Mirror 0
## 11025 DailyMirror 2020-01-09T18:50:00.000Z The Mirror 0
## 11026 TheSun 2020-01-09T18:50:00.000Z The Sun 18
## 11027 Telegraph 2020-01-09T18:48:30.000Z The Telegraph 10
## 11028 Telegraph 2020-01-09T18:48:27.000Z The Telegraph 7
## 11029 Telegraph 2020-01-09T18:48:22.000Z The Telegraph 232
## 11030 DailyMirror 2020-01-09T18:48:00.000Z The Mirror 5
## 11031 Telegraph 2020-01-09T18:47:34.000Z The Telegraph 0
## 11032 DailyMirror 2020-01-09T18:46:00.000Z The Mirror 4
## 11033 EveningStandard 2020-01-09T18:44:36.000Z Evening Standard 1
## 11034 TheSun 2020-01-09T18:43:20.000Z The Sun 1
## 11035 DailyMirror 2020-01-09T18:43:00.000Z The Mirror 0
## 11036 TheSun 2020-01-09T18:42:40.000Z The Sun 5
## 11037 guardian 2020-01-09T18:42:39.000Z The Guardian 21
## 11038 DailyMailUK 2020-01-09T18:41:40.000Z Daily Mail U.K. 4
## 11039 DailyMailUK 2020-01-09T18:41:05.000Z Daily Mail U.K. 2
## 11040 DailyMirror 2020-01-09T18:41:00.000Z The Mirror 5
## 11041 DailyMirror 2020-01-09T18:40:36.000Z The Mirror 12
## 11042 DailyMirror 2020-01-09T18:40:00.000Z The Mirror 2
## 11043 TheSun 2020-01-09T18:40:00.000Z The Sun 31
## 11044 DailyMirror 2020-01-09T18:39:00.000Z The Mirror 4
## 11045 TheSun 2020-01-09T18:35:26.000Z The Sun 3
## 11046 TheSun 2020-01-09T18:35:21.000Z The Sun 2
## 11047 DailyMirror 2020-01-09T18:35:00.000Z The Mirror 1
## 11048 Telegraph 2020-01-09T18:33:51.000Z The Telegraph 8
## 11049 guardian 2020-01-09T18:33:49.000Z The Guardian 44
## 11050 EveningStandard 2020-01-09T18:33:48.000Z Evening Standard 0
## 11051 TheSun 2020-01-09T18:33:47.000Z The Sun 2
## 11052 TheSun 2020-01-09T18:32:49.000Z The Sun 7
## 11053 DailyMirror 2020-01-09T18:32:14.000Z The Mirror 5
## 11054 MetroUK 2020-01-09T18:30:10.000Z Metro 8
## 11055 DailyMirror 2020-01-09T18:30:04.000Z The Mirror 3
## 11056 TheSun 2020-01-09T18:30:00.000Z The Sun 2
## 11057 TheSun 2020-01-09T18:30:00.000Z The Sun 4
## 11058 DailyMirror 2020-01-09T18:29:58.000Z The Mirror 2
## 11059 DailyMirror 2020-01-09T18:27:00.000Z The Mirror 4
## 11060 DailyMirror 2020-01-09T18:26:00.000Z The Mirror 3
## 11061 DailyMirror 2020-01-09T18:26:00.000Z The Mirror 2
## 11062 TheSun 2020-01-09T18:25:40.000Z The Sun 4
## 11063 guardian 2020-01-09T18:25:40.000Z The Guardian 18
## 11064 guardian 2020-01-09T18:25:36.000Z The Guardian 23
## 11065 MetroUK 2020-01-09T18:23:46.000Z Metro 7
## 11066 TheSun 2020-01-09T18:22:38.000Z The Sun 10
## 11067 EveningStandard 2020-01-09T18:22:37.000Z Evening Standard 0
## 11068 MetroUK 2020-01-09T18:21:26.000Z Metro 28
## 11069 DailyMailUK 2020-01-09T18:21:06.000Z Daily Mail U.K. 10
## 11070 TheSun 2020-01-09T18:20:00.000Z The Sun 6
## 11071 DailyMirror 2020-01-09T18:20:00.000Z The Mirror 0
## 11072 Telegraph 2020-01-09T18:19:42.000Z The Telegraph 3
## 11073 DailyMirror 2020-01-09T18:19:19.000Z The Mirror 2
## 11074 DailyMirror 2020-01-09T18:19:02.000Z The Mirror 3
## 11075 thetimes 2020-01-09T18:16:27.000Z The Times 34
## 11076 guardian 2020-01-09T18:16:22.000Z The Guardian 5
## 11077 DailyMirror 2020-01-09T18:13:00.000Z The Mirror 3
## 11078 TheSun 2020-01-09T18:12:25.000Z The Sun 0
## 11079 TheSun 2020-01-09T18:12:23.000Z The Sun 5
## 11080 DailyMailUK 2020-01-09T18:11:25.000Z Daily Mail U.K. 52
## 11081 EveningStandard 2020-01-09T18:11:18.000Z Evening Standard 1
## 11082 DailyMirror 2020-01-09T18:11:00.000Z The Mirror 3
## 11083 TheSun 2020-01-09T18:10:00.000Z The Sun 1
## 11084 DailyMirror 2020-01-09T18:09:00.000Z The Mirror 0
## 11085 DailyMirror 2020-01-09T18:09:00.000Z The Mirror 1
## 11086 thetimes 2020-01-09T18:08:58.000Z The Times 3
## 11087 guardian 2020-01-09T18:07:22.000Z The Guardian 37
## 11088 DailyMirror 2020-01-09T18:07:00.000Z The Mirror 2
## 11089 DailyMirror 2020-01-09T18:06:42.000Z The Mirror 11
## 11090 DailyMirror 2020-01-09T18:05:33.000Z The Mirror 28
## 11091 Telegraph 2020-01-09T18:05:25.000Z The Telegraph 1
## 11092 TheSun 2020-01-09T18:02:29.000Z The Sun 1
## 11093 EveningStandard 2020-01-09T18:01:22.000Z Evening Standard 0
## 11094 MetroUK 2020-01-09T18:00:10.000Z Metro 0
## 11095 DailyMailUK 2020-01-09T18:00:04.000Z Daily Mail U.K. 1
## 11096 TheSun 2020-01-09T18:00:00.000Z The Sun 1
## 11097 DailyMailUK 2020-01-09T17:58:44.000Z Daily Mail U.K. 15
## 11098 guardian 2020-01-09T17:58:27.000Z The Guardian 29
## 11099 guardian 2020-01-09T17:58:18.000Z The Guardian 5
## 11100 DailyMirror 2020-01-09T17:56:19.000Z The Mirror 8
## 11101 thetimes 2020-01-09T17:55:43.000Z The Times 5
## 11102 DailyMirror 2020-01-09T17:55:00.000Z The Mirror 1
## 11103 TheSun 2020-01-09T17:52:19.000Z The Sun 0
## 11104 EveningStandard 2020-01-09T17:52:18.000Z Evening Standard 2
## 11105 DailyMirror 2020-01-09T17:52:00.000Z The Mirror 1
## 11106 guardian 2020-01-09T17:51:18.000Z The Guardian 46
## 11107 DailyMirror 2020-01-09T17:51:00.000Z The Mirror 2
## 11108 Telegraph 2020-01-09T17:50:22.000Z The Telegraph 27
## 11109 TheSun 2020-01-09T17:50:00.000Z The Sun 3
## 11110 DailyMirror 2020-01-09T17:48:00.000Z The Mirror 14
## 11111 TheSun 2020-01-09T17:46:35.000Z The Sun 2
## 11112 EveningStandard 2020-01-09T17:45:15.000Z Evening Standard 0
## 11113 guardian 2020-01-09T17:45:00.000Z The Guardian 4
## 11114 DailyMirror 2020-01-09T17:43:41.000Z The Mirror 4
## 11115 thetimes 2020-01-09T17:43:20.000Z The Times 10
## 11116 TheSun 2020-01-09T17:43:00.000Z The Sun 1
## 11117 DailyMirror 2020-01-09T17:43:00.000Z The Mirror 2
## 11118 TheSun 2020-01-09T17:42:18.000Z The Sun 2
## 11119 guardian 2020-01-09T17:42:18.000Z The Guardian 86
## 11120 DailyMailUK 2020-01-09T17:41:04.000Z Daily Mail U.K. 4
## 11121 TheSun 2020-01-09T17:40:00.000Z The Sun 8
## 11122 DailyMirror 2020-01-09T17:39:00.000Z The Mirror 2
## 11123 TheSun 2020-01-09T17:37:56.000Z The Sun 4
## 11124 EveningStandard 2020-01-09T17:37:55.000Z Evening Standard 1
## 11125 DailyMirror 2020-01-09T17:37:00.000Z The Mirror 4
## 11126 Telegraph 2020-01-09T17:36:59.000Z The Telegraph 2
## 11127 thetimes 2020-01-09T17:35:34.000Z The Times 0
## 11128 thetimes 2020-01-09T17:35:32.000Z The Times 2
## 11129 thetimes 2020-01-09T17:35:31.000Z The Times 11
## 11130 DailyMailUK 2020-01-09T17:35:15.000Z Daily Mail U.K. 43
## 11131 DailyMirror 2020-01-09T17:35:00.000Z The Mirror 2
## 11132 TheSun 2020-01-09T17:33:01.000Z The Sun 3
## 11133 guardian 2020-01-09T17:32:25.000Z The Guardian 4
## 11134 EveningStandard 2020-01-09T17:32:24.000Z Evening Standard 3
## 11135 guardian 2020-01-09T17:32:24.000Z The Guardian 16
## 11136 guardian 2020-01-09T17:32:23.000Z The Guardian 4
## 11137 guardian 2020-01-09T17:32:21.000Z The Guardian 9
## 11138 guardian 2020-01-09T17:32:20.000Z The Guardian 3
## 11139 guardian 2020-01-09T17:32:19.000Z The Guardian 8
## 11140 EveningStandard 2020-01-09T17:31:53.000Z Evening Standard 4
## 11141 MetroUK 2020-01-09T17:31:32.000Z Metro 3
## 11142 DailyMirror 2020-01-09T17:30:48.000Z The Mirror 4
## 11143 TheSun 2020-01-09T17:30:31.000Z The Sun 1
## 11144 TheSun 2020-01-09T17:30:25.000Z The Sun 2
## 11145 DailyMirror 2020-01-09T17:30:23.000Z The Mirror 9
## 11146 MetroUK 2020-01-09T17:30:06.000Z Metro 5
## 11147 DailyMirror 2020-01-09T17:30:04.000Z The Mirror 13
## 11148 guardian 2020-01-09T17:30:00.000Z The Guardian 2
## 11149 TheSun 2020-01-09T17:30:00.000Z The Sun 8
## 11150 TheSun 2020-01-09T17:30:00.000Z The Sun 4
## 11151 EveningStandard 2020-01-09T17:29:57.000Z Evening Standard 1
## 11152 EveningStandard 2020-01-09T17:29:51.000Z Evening Standard 0
## 11153 DailyMirror 2020-01-09T17:29:00.000Z The Mirror 1
## 11154 DailyMirror 2020-01-09T17:27:00.000Z The Mirror 4
## 11155 EveningStandard 2020-01-09T17:26:52.000Z Evening Standard 1
## 11156 DailyMirror 2020-01-09T17:26:00.000Z The Mirror 3
## 11157 thetimes 2020-01-09T17:23:45.000Z The Times 13
## 11158 MetroUK 2020-01-09T17:23:03.000Z Metro 3
## 11159 TheSun 2020-01-09T17:22:45.000Z The Sun 3
## 11160 DailyMailUK 2020-01-09T17:22:03.000Z Daily Mail U.K. 9
## 11161 thetimes 2020-01-09T17:21:41.000Z The Times 11
## 11162 EveningStandard 2020-01-09T17:21:15.000Z Evening Standard 2
## 11163 DailyMirror 2020-01-09T17:21:00.000Z The Mirror 5
## 11164 TheSun 2020-01-09T17:20:00.000Z The Sun 19
## 11165 DailyMirror 2020-01-09T17:20:00.000Z The Mirror 0
## 11166 DailyMirror 2020-01-09T17:19:15.000Z The Mirror 1
## 11167 Telegraph 2020-01-09T17:17:58.000Z The Telegraph 2
## 11168 DailyMirror 2020-01-09T17:17:20.000Z The Mirror 20
## 11169 DailyMirror 2020-01-09T17:16:55.000Z The Mirror 2
## 11170 DailyMirror 2020-01-09T17:16:04.000Z The Mirror 1
## 11171 DailyMirror 2020-01-09T17:15:11.000Z The Mirror 2
## 11172 EveningStandard 2020-01-09T17:14:52.000Z Evening Standard 0
## 11173 TheSun 2020-01-09T17:12:54.000Z The Sun 2
## 11174 DailyMirror 2020-01-09T17:12:24.000Z The Mirror 4
## 11175 DailyMirror 2020-01-09T17:12:11.000Z The Mirror 7
## 11176 thetimes 2020-01-09T17:11:51.000Z The Times 3
## 11177 TheSun 2020-01-09T17:11:07.000Z The Sun 6
## 11178 DailyMailUK 2020-01-09T17:10:08.000Z Daily Mail U.K. 21
## 11179 TheSun 2020-01-09T17:10:00.000Z The Sun 2
## 11180 EveningStandard 2020-01-09T17:08:53.000Z Evening Standard 4
## 11181 Telegraph 2020-01-09T17:08:30.000Z The Telegraph 10
## 11182 Telegraph 2020-01-09T17:08:27.000Z The Telegraph 3
## 11183 Telegraph 2020-01-09T17:08:21.000Z The Telegraph 12
## 11184 Telegraph 2020-01-09T17:08:13.000Z The Telegraph 6
## 11185 DailyMirror 2020-01-09T17:07:00.000Z The Mirror 2
## 11186 DailyMirror 2020-01-09T17:06:29.000Z The Mirror 5
## 11187 guardian 2020-01-09T17:06:06.000Z The Guardian 91
## 11188 DailyMirror 2020-01-09T17:06:00.000Z The Mirror 1
## 11189 DailyMirror 2020-01-09T17:06:00.000Z The Mirror 3
## 11190 DailyMirror 2020-01-09T17:05:50.000Z The Mirror 5
## 11191 DailyMirror 2020-01-09T17:05:07.000Z The Mirror 0
## 11192 guardian 2020-01-09T17:04:01.000Z The Guardian 2
## 11193 Telegraph 2020-01-09T17:03:48.000Z The Telegraph 2
## 11194 TheSun 2020-01-09T17:02:46.000Z The Sun 0
## 11195 EveningStandard 2020-01-09T17:02:09.000Z Evening Standard 15
## 11196 DailyMirror 2020-01-09T17:01:18.000Z The Mirror 0
## 11197 DailyMirror 2020-01-09T17:00:30.000Z The Mirror 2
## 11198 MetroUK 2020-01-09T17:00:20.000Z Metro 0
## 11199 TheSun 2020-01-09T17:00:00.000Z The Sun 52
## 11200 DailyMirror 2020-01-09T16:59:55.000Z The Mirror 2
## 11201 TheSun 2020-01-09T16:59:17.000Z The Sun 4
## 11202 DailyMailUK 2020-01-09T16:59:03.000Z Daily Mail U.K. 3
## 11203 EveningStandard 2020-01-09T16:57:46.000Z Evening Standard 0
## 11204 thetimes 2020-01-09T16:55:11.000Z The Times 5
## 11205 DailyMirror 2020-01-09T16:55:00.000Z The Mirror 1
## 11206 DailyMirror 2020-01-09T16:55:00.000Z The Mirror 0
## 11207 TheSun 2020-01-09T16:53:24.000Z The Sun 6
## 11208 TheSun 2020-01-09T16:52:56.000Z The Sun 6
## 11209 DailyMirror 2020-01-09T16:52:17.000Z The Mirror 8
## 11210 EveningStandard 2020-01-09T16:51:55.000Z Evening Standard 0
## 11211 DailyMailUK 2020-01-09T16:51:38.000Z Daily Mail U.K. 4
## 11212 DailyMirror 2020-01-09T16:51:00.000Z The Mirror 1
## 11213 DailyMirror 2020-01-09T16:51:00.000Z The Mirror 0
## 11214 DailyMailUK 2020-01-09T16:50:09.000Z Daily Mail U.K. 9
## 11215 TheSun 2020-01-09T16:50:00.000Z The Sun 2
## 11216 DailyMirror 2020-01-09T16:49:58.000Z The Mirror 6
## 11217 Telegraph 2020-01-09T16:48:02.000Z The Telegraph 5
## 11218 DailyMirror 2020-01-09T16:48:00.000Z The Mirror 3
## 11219 TheSun 2020-01-09T16:47:42.000Z The Sun 1
## 11220 guardian 2020-01-09T16:46:10.000Z The Guardian 21
## 11221 DailyMirror 2020-01-09T16:46:00.000Z The Mirror 5
## 11222 EveningStandard 2020-01-09T16:45:07.000Z Evening Standard 0
## 11223 DailyMirror 2020-01-09T16:43:52.000Z The Mirror 9
## 11224 TheSun 2020-01-09T16:43:05.000Z The Sun 0
## 11225 DailyMirror 2020-01-09T16:43:00.000Z The Mirror 2
## 11226 MetroUK 2020-01-09T16:42:47.000Z Metro 13
## 11227 DailyMirror 2020-01-09T16:42:35.000Z The Mirror 47
## 11228 DailyMirror 2020-01-09T16:42:00.000Z The Mirror 0
## 11229 Telegraph 2020-01-09T16:40:32.000Z The Telegraph 8
## 11230 DailyMailUK 2020-01-09T16:40:08.000Z Daily Mail U.K. 126
## 11231 TheSun 2020-01-09T16:40:00.000Z The Sun 0
## 11232 TheSun 2020-01-09T16:39:28.000Z The Sun 0
## 11233 Telegraph 2020-01-09T16:39:19.000Z The Telegraph 7
## 11234 Telegraph 2020-01-09T16:39:16.000Z The Telegraph 2
## 11235 DailyMirror 2020-01-09T16:39:00.000Z The Mirror 1
## 11236 EveningStandard 2020-01-09T16:38:51.000Z Evening Standard 0
## 11237 DailyMailUK 2020-01-09T16:38:06.000Z Daily Mail U.K. 74
## 11238 guardian 2020-01-09T16:36:59.000Z The Guardian 3
## 11239 guardian 2020-01-09T16:36:58.000Z The Guardian 8
## 11240 guardian 2020-01-09T16:36:57.000Z The Guardian 10
## 11241 guardian 2020-01-09T16:36:55.000Z The Guardian 17
## 11242 guardian 2020-01-09T16:36:54.000Z The Guardian 1
## 11243 DailyMirror 2020-01-09T16:36:00.000Z The Mirror 1
## 11244 DailyMirror 2020-01-09T16:35:00.000Z The Mirror 0
## 11245 TheSun 2020-01-09T16:33:55.000Z The Sun 3
## 11246 TheSun 2020-01-09T16:33:37.000Z The Sun 2
## 11247 TheSun 2020-01-09T16:32:50.000Z The Sun 1
## 11248 EveningStandard 2020-01-09T16:32:49.000Z Evening Standard 0
## 11249 DailyMirror 2020-01-09T16:32:00.000Z The Mirror 4
## 11250 MetroUK 2020-01-09T16:30:14.000Z Metro 10
## 11251 DailyMailUK 2020-01-09T16:30:07.000Z Daily Mail U.K. 4
## 11252 guardian 2020-01-09T16:30:00.000Z The Guardian 1
## 11253 TheSun 2020-01-09T16:30:00.000Z The Sun 4
## 11254 Telegraph 2020-01-09T16:29:22.000Z The Telegraph 5
## 11255 TheSun 2020-01-09T16:28:04.000Z The Sun 20
## 11256 EveningStandard 2020-01-09T16:26:28.000Z Evening Standard 0
## 11257 DailyMirror 2020-01-09T16:26:00.000Z The Mirror 0
## 11258 DailyMirror 2020-01-09T16:26:00.000Z The Mirror 0
## 11259 thetimes 2020-01-09T16:25:56.000Z The Times 1
## 11260 thetimes 2020-01-09T16:25:56.000Z The Times 1
## 11261 thetimes 2020-01-09T16:25:55.000Z The Times 4
## 11262 DailyMirror 2020-01-09T16:25:00.000Z The Mirror 1
## 11263 thetimes 2020-01-09T16:24:31.000Z The Times 3
## 11264 guardian 2020-01-09T16:23:27.000Z The Guardian 19
## 11265 TheSun 2020-01-09T16:22:27.000Z The Sun 2
## 11266 DailyMailUK 2020-01-09T16:22:03.000Z Daily Mail U.K. 2
## 11267 EveningStandard 2020-01-09T16:21:29.000Z Evening Standard 0
## 11268 TheSun 2020-01-09T16:20:00.000Z The Sun 23
## 11269 DailyMirror 2020-01-09T16:19:26.000Z The Mirror 19
## 11270 TheSun 2020-01-09T16:19:14.000Z The Sun 2
## 11271 DailyMirror 2020-01-09T16:16:30.000Z The Mirror 2
## 11272 DailyMirror 2020-01-09T16:16:00.000Z The Mirror 2
## 11273 EveningStandard 2020-01-09T16:15:43.000Z Evening Standard 1
## 11274 MetroUK 2020-01-09T16:15:43.000Z Metro 1
## 11275 Telegraph 2020-01-09T16:14:40.000Z The Telegraph 14
## 11276 guardian 2020-01-09T16:14:40.000Z The Guardian 87
## 11277 TheSun 2020-01-09T16:12:46.000Z The Sun 2
## 11278 DailyMirror 2020-01-09T16:12:00.000Z The Mirror 1
## 11279 MetroUK 2020-01-09T16:10:05.000Z Metro 2
## 11280 DailyMailUK 2020-01-09T16:10:05.000Z Daily Mail U.K. 37
## 11281 TheSun 2020-01-09T16:10:00.000Z The Sun 15
## 11282 EveningStandard 2020-01-09T16:09:40.000Z Evening Standard 0
## 11283 guardian 2020-01-09T16:06:12.000Z The Guardian 6
## 11284 guardian 2020-01-09T16:06:11.000Z The Guardian 12
## 11285 guardian 2020-01-09T16:06:10.000Z The Guardian 1
## 11286 guardian 2020-01-09T16:06:08.000Z The Guardian 5
## 11287 DailyMirror 2020-01-09T16:06:00.000Z The Mirror 3
## 11288 DailyMirror 2020-01-09T16:05:56.000Z The Mirror 1
## 11289 EveningStandard 2020-01-09T16:04:33.000Z Evening Standard 1
## 11290 TheSun 2020-01-09T16:02:43.000Z The Sun 2
## 11291 MetroUK 2020-01-09T16:02:06.000Z Metro 2
## 11292 EveningStandard 2020-01-09T16:00:36.000Z Evening Standard 1
## 11293 MetroUK 2020-01-09T16:00:21.000Z Metro 8
## 11294 DailyMirror 2020-01-09T16:00:01.000Z The Mirror 0
## 11295 TheSun 2020-01-09T16:00:00.000Z The Sun 25
## 11296 DailyMirror 2020-01-09T15:59:38.000Z The Mirror 7
## 11297 DailyMailUK 2020-01-09T15:59:08.000Z Daily Mail U.K. 1
## 11298 Telegraph 2020-01-09T15:58:38.000Z The Telegraph 1
## 11299 TheSun 2020-01-09T15:55:49.000Z The Sun 1
## 11300 thetimes 2020-01-09T15:55:40.000Z The Times 0
## 11301 EveningStandard 2020-01-09T15:55:37.000Z Evening Standard 0
## 11302 DailyMirror 2020-01-09T15:55:00.000Z The Mirror 1
## 11303 guardian 2020-01-09T15:54:24.000Z The Guardian 77
## 11304 TheSun 2020-01-09T15:52:20.000Z The Sun 4
## 11305 DailyMailUK 2020-01-09T15:51:06.000Z Daily Mail U.K. 2
## 11306 DailyMirror 2020-01-09T15:51:00.000Z The Mirror 3
## 11307 DailyMirror 2020-01-09T15:51:00.000Z The Mirror 1
## 11308 TheSun 2020-01-09T15:50:00.000Z The Sun 21
## 11309 DailyMirror 2020-01-09T15:50:00.000Z The Mirror 2
## 11310 DailyMirror 2020-01-09T15:49:00.000Z The Mirror 2
## 11311 DailyMirror 2020-01-09T15:48:00.000Z The Mirror 5
## 11312 EveningStandard 2020-01-09T15:47:35.000Z Evening Standard 23
## 11313 DailyMirror 2020-01-09T15:47:00.000Z The Mirror 3
## 11314 DailyMirror 2020-01-09T15:46:31.000Z The Mirror 1
## 11315 EveningStandard 2020-01-09T15:45:27.000Z Evening Standard 2
## 11316 TheSun 2020-01-09T15:42:58.000Z The Sun 2
## 11317 DailyMirror 2020-01-09T15:42:00.000Z The Mirror 0
## 11318 guardian 2020-01-09T15:41:55.000Z The Guardian 1
## 11319 guardian 2020-01-09T15:41:54.000Z The Guardian 1
## 11320 guardian 2020-01-09T15:41:53.000Z The Guardian 28
## 11321 guardian 2020-01-09T15:41:53.000Z The Guardian 1
## 11322 guardian 2020-01-09T15:41:51.000Z The Guardian 1
## 11323 guardian 2020-01-09T15:41:50.000Z The Guardian 15
## 11324 DailyMirror 2020-01-09T15:41:49.000Z The Mirror 1
## 11325 DailyMirror 2020-01-09T15:41:26.000Z The Mirror 2
## 11326 guardian 2020-01-09T15:41:00.000Z The Guardian 17
## 11327 EveningStandard 2020-01-09T15:40:56.000Z Evening Standard 0
## 11328 DailyMailUK 2020-01-09T15:40:04.000Z Daily Mail U.K. 1
## 11329 Telegraph 2020-01-09T15:40:03.000Z The Telegraph 61
## 11330 TheSun 2020-01-09T15:40:00.000Z The Sun 5
## 11331 TheSun 2020-01-09T15:39:38.000Z The Sun 2
## 11332 DailyMirror 2020-01-09T15:39:00.000Z The Mirror 3
## 11333 DailyMirror 2020-01-09T15:38:00.000Z The Mirror 0
## 11334 DailyMirror 2020-01-09T15:35:00.000Z The Mirror 1
## 11335 DailyMirror 2020-01-09T15:34:29.000Z The Mirror 1
## 11336 EveningStandard 2020-01-09T15:34:18.000Z Evening Standard 14
## 11337 TheSun 2020-01-09T15:33:17.000Z The Sun 2
## 11338 DailyMirror 2020-01-09T15:32:00.000Z The Mirror 3
## 11339 MetroUK 2020-01-09T15:31:08.000Z Metro 1
## 11340 DailyMirror 2020-01-09T15:30:55.000Z The Mirror 0
## 11341 EveningStandard 2020-01-09T15:30:50.000Z Evening Standard 0
## 11342 TheSun 2020-01-09T15:30:00.000Z The Sun 30
## 11343 thetimes 2020-01-09T15:28:52.000Z The Times 6
## 11344 guardian 2020-01-09T15:28:51.000Z The Guardian 23
## 11345 DailyMirror 2020-01-09T15:27:37.000Z The Mirror 8
## 11346 DailyMirror 2020-01-09T15:27:01.000Z The Mirror 6
## 11347 Telegraph 2020-01-09T15:26:44.000Z The Telegraph 3
## 11348 Telegraph 2020-01-09T15:25:46.000Z The Telegraph 2
## 11349 EveningStandard 2020-01-09T15:25:43.000Z Evening Standard 2
## 11350 DailyMirror 2020-01-09T15:23:49.000Z The Mirror 36
## 11351 DailyMailUK 2020-01-09T15:23:38.000Z Daily Mail U.K. 66
## 11352 TheSun 2020-01-09T15:22:46.000Z The Sun 3
## 11353 DailyMirror 2020-01-09T15:22:33.000Z The Mirror 5
## 11354 DailyMirror 2020-01-09T15:22:01.000Z The Mirror 3
## 11355 EveningStandard 2020-01-09T15:21:48.000Z Evening Standard 5
## 11356 DailyMirror 2020-01-09T15:20:47.000Z The Mirror 2
## 11357 DailyMailUK 2020-01-09T15:20:08.000Z Daily Mail U.K. 0
## 11358 TheSun 2020-01-09T15:20:00.000Z The Sun 11
## 11359 EveningStandard 2020-01-10T08:05:22.000Z Evening Standard 1
## 11360 TheSun 2020-01-10T08:03:00.000Z The Sun 2
## 11361 TheSun 2020-01-10T08:02:23.000Z The Sun 16
## 11362 MetroUK 2020-01-10T08:00:09.000Z Metro 2
## 11363 TheSun 2020-01-10T08:00:00.000Z The Sun 1
## 11364 Telegraph 2020-01-10T07:59:57.000Z The Telegraph 0
## 11365 guardian 2020-01-10T07:57:25.000Z The Guardian 16
## 11366 DailyMirror 2020-01-10T07:54:35.000Z The Mirror 3
## 11367 TheSun 2020-01-10T07:52:30.000Z The Sun 7
## 11368 TheSun 2020-01-10T07:50:00.000Z The Sun 2
## 11369 DailyMirror 2020-01-10T07:49:36.000Z The Mirror 11
## 11370 DailyMirror 2020-01-10T07:49:07.000Z The Mirror 9
## 11371 DailyMirror 2020-01-10T07:49:00.000Z The Mirror 1
## 11372 TheSun 2020-01-10T07:48:59.000Z The Sun 2
## 11373 DailyMirror 2020-01-10T07:48:47.000Z The Mirror 0
## 11374 Telegraph 2020-01-10T07:48:22.000Z The Telegraph 21
## 11375 guardian 2020-01-10T07:47:35.000Z The Guardian 11
## 11376 DailyMailUK 2020-01-10T07:46:59.000Z Daily Mail U.K. 6
## 11377 EveningStandard 2020-01-10T07:46:56.000Z Evening Standard 0
## 11378 MetroUK 2020-01-10T07:46:36.000Z Metro 2
## 11379 Telegraph 2020-01-10T07:45:41.000Z The Telegraph 1
## 11380 DailyMirror 2020-01-10T07:45:03.000Z The Mirror 4
## 11381 EveningStandard 2020-01-10T07:44:38.000Z Evening Standard 2
## 11382 DailyMailUK 2020-01-10T07:43:17.000Z Daily Mail U.K. 19
## 11383 DailyMirror 2020-01-10T07:42:48.000Z The Mirror 10
## 11384 TheSun 2020-01-10T07:42:41.000Z The Sun 4
## 11385 DailyMirror 2020-01-10T07:41:00.000Z The Mirror 1
## 11386 TheSun 2020-01-10T07:40:00.000Z The Sun 4
## 11387 TheSun 2020-01-10T07:38:54.000Z The Sun 4
## 11388 guardian 2020-01-10T07:38:44.000Z The Guardian 3
## 11389 DailyMirror 2020-01-10T07:36:15.000Z The Mirror 8
## 11390 TheSun 2020-01-10T07:32:51.000Z The Sun 3
## 11391 EveningStandard 2020-01-10T07:30:55.000Z Evening Standard 0
## 11392 Telegraph 2020-01-10T07:30:55.000Z The Telegraph 8
## 11393 MetroUK 2020-01-10T07:30:07.000Z Metro 3
## 11394 TheSun 2020-01-10T07:30:00.000Z The Sun 4
## 11395 Telegraph 2020-01-10T07:30:00.000Z The Telegraph 7
## 11396 DailyMirror 2020-01-10T07:30:00.000Z The Mirror 6
## 11397 DailyMirror 2020-01-10T07:27:44.000Z The Mirror 1
## 11398 TheSun 2020-01-10T07:25:42.000Z The Sun 2
## 11399 DailyMailUK 2020-01-10T07:23:54.000Z Daily Mail U.K. 17
## 11400 TheSun 2020-01-10T07:22:59.000Z The Sun 2
## 11401 Telegraph 2020-01-10T07:22:19.000Z The Telegraph 4
## 11402 Telegraph 2020-01-10T07:22:16.000Z The Telegraph 11
## 11403 thetimes 2020-01-10T07:21:05.000Z The Times 6
## 11404 EveningStandard 2020-01-10T07:21:01.000Z Evening Standard 1
## 11405 guardian 2020-01-10T07:20:23.000Z The Guardian 52
## 11406 TheSun 2020-01-10T07:20:00.000Z The Sun 15
## 11407 guardian 2020-01-10T07:19:06.000Z The Guardian 15
## 11408 TheSun 2020-01-10T07:12:11.000Z The Sun 9
## 11409 EveningStandard 2020-01-10T07:10:48.000Z Evening Standard 5
## 11410 DailyMirror 2020-01-10T07:10:25.000Z The Mirror 10
## 11411 guardian 2020-01-10T07:10:18.000Z The Guardian 32
## 11412 guardian 2020-01-10T07:10:18.000Z The Guardian 20
## 11413 guardian 2020-01-10T07:10:17.000Z The Guardian 38
## 11414 TheSun 2020-01-10T07:10:00.000Z The Sun 21
## 11415 EveningStandard 2020-01-10T07:05:18.000Z Evening Standard 1
## 11416 DailyMirror 2020-01-10T07:04:55.000Z The Mirror 3
## 11417 TheSun 2020-01-10T07:04:23.000Z The Sun 2
## 11418 TheSun 2020-01-10T07:02:24.000Z The Sun 5
## 11419 thetimes 2020-01-10T07:00:22.000Z The Times 1
## 11420 Telegraph 2020-01-10T07:00:19.000Z The Telegraph 5
## 11421 MetroUK 2020-01-10T07:00:04.000Z Metro 0
## 11422 TheSun 2020-01-10T07:00:00.000Z The Sun 2
## 11423 DailyMirror 2020-01-10T06:57:00.000Z The Mirror 5
## 11424 EveningStandard 2020-01-10T06:55:11.000Z Evening Standard 2
## 11425 guardian 2020-01-10T06:53:14.000Z The Guardian 56
## 11426 thetimes 2020-01-10T06:52:13.000Z The Times 13
## 11427 DailyMirror 2020-01-10T06:46:00.000Z The Mirror 4
## 11428 EveningStandard 2020-01-10T06:45:20.000Z Evening Standard 3
## 11429 guardian 2020-01-10T06:43:55.000Z The Guardian 59
## 11430 DailyMirror 2020-01-10T06:42:30.000Z The Mirror 11
## 11431 TheSun 2020-01-10T06:42:23.000Z The Sun 3
## 11432 thetimes 2020-01-10T06:40:26.000Z The Times 10
## 11433 EveningStandard 2020-01-10T06:40:25.000Z Evening Standard 5
## 11434 TheSun 2020-01-10T06:40:00.000Z The Sun 27
## 11435 DailyMirror 2020-01-10T06:38:08.000Z The Mirror 1
## 11436 DailyMirror 2020-01-10T06:37:00.000Z The Mirror 2
## 11437 DailyMirror 2020-01-10T06:36:00.000Z The Mirror 1
## 11438 EveningStandard 2020-01-10T06:35:33.000Z Evening Standard 0
## 11439 DailyMirror 2020-01-10T06:34:00.000Z The Mirror 2
## 11440 Telegraph 2020-01-10T06:30:37.000Z The Telegraph 1
## 11441 MetroUK 2020-01-10T06:30:06.000Z Metro 3
## 11442 EveningStandard 2020-01-10T06:27:38.000Z Evening Standard 0
## 11443 EveningStandard 2020-01-10T06:24:41.000Z Evening Standard 1
## 11444 guardian 2020-01-10T06:23:43.000Z The Guardian 14
## 11445 TheSun 2020-01-10T06:22:44.000Z The Sun 4
## 11446 thetimes 2020-01-10T06:20:48.000Z The Times 13
## 11447 EveningStandard 2020-01-10T06:20:45.000Z Evening Standard 0
## 11448 TheSun 2020-01-10T06:20:00.000Z The Sun 3
## 11449 EveningStandard 2020-01-10T06:12:53.000Z Evening Standard 0
## 11450 guardian 2020-01-10T06:12:45.000Z The Guardian 9
## 11451 EveningStandard 2020-01-10T06:05:01.000Z Evening Standard 0
## 11452 TheSun 2020-01-10T06:03:04.000Z The Sun 3
## 11453 EveningStandard 2020-01-10T06:03:03.000Z Evening Standard 0
## 11454 Telegraph 2020-01-10T06:01:06.000Z The Telegraph 87
## 11455 MetroUK 2020-01-10T06:00:11.000Z Metro 1
## 11456 MetroUK 2020-01-10T06:00:11.000Z Metro 3
## 11457 thetimes 2020-01-10T06:00:07.000Z The Times 17
## 11458 TheSun 2020-01-10T06:00:00.000Z The Sun 9
## 11459 guardian 2020-01-10T05:55:12.000Z The Guardian 44
## 11460 EveningStandard 2020-01-10T05:55:11.000Z Evening Standard 0
## 11461 DailyMirror 2020-01-10T05:54:00.000Z The Mirror 3
## 11462 DailyMirror 2020-01-10T05:49:00.000Z The Mirror 5
## 11463 EveningStandard 2020-01-10T05:48:18.000Z Evening Standard 0
## 11464 TheSun 2020-01-10T05:43:02.000Z The Sun 0
## 11465 EveningStandard 2020-01-10T05:40:05.000Z Evening Standard 1
## 11466 TheSun 2020-01-10T05:40:00.000Z The Sun 1
## 11467 EveningStandard 2020-01-10T05:34:10.000Z Evening Standard 0
## 11468 EveningStandard 2020-01-10T05:26:20.000Z Evening Standard 0
## 11469 DailyMirror 2020-01-10T05:25:00.000Z The Mirror 2
## 11470 guardian 2020-01-10T05:24:22.000Z The Guardian 33
## 11471 TheSun 2020-01-10T05:22:25.000Z The Sun 0
## 11472 TheSun 2020-01-10T05:20:00.000Z The Sun 9
## 11473 EveningStandard 2020-01-10T05:18:27.000Z Evening Standard 1
## 11474 guardian 2020-01-10T05:15:56.000Z The Guardian 6
## 11475 EveningStandard 2020-01-10T05:10:35.000Z Evening Standard 3
## 11476 EveningStandard 2020-01-10T05:04:41.000Z Evening Standard 1
## 11477 TheSun 2020-01-10T05:02:43.000Z The Sun 0
## 11478 TheSun 2020-01-10T05:00:00.000Z The Sun 0
## 11479 EveningStandard 2020-01-10T04:56:48.000Z Evening Standard 0
## 11480 guardian 2020-01-10T04:54:50.000Z The Guardian 12
## 11481 EveningStandard 2020-01-10T04:48:53.000Z Evening Standard 1
## 11482 TheSun 2020-01-10T04:42:59.000Z The Sun 1
## 11483 EveningStandard 2020-01-10T04:41:58.000Z Evening Standard 0
## 11484 EveningStandard 2020-01-10T04:39:02.000Z Evening Standard 1
## 11485 EveningStandard 2020-01-10T04:35:06.000Z Evening Standard 1
## 11486 DailyMirror 2020-01-10T04:34:19.000Z The Mirror 3
## 11487 EveningStandard 2020-01-10T04:28:58.000Z Evening Standard 1
## 11488 TheSun 2020-01-10T04:23:03.000Z The Sun 2
## 11489 EveningStandard 2020-01-10T04:23:02.000Z Evening Standard 0
## 11490 guardian 2020-01-10T04:22:55.000Z The Guardian 62
## 11491 DailyMirror 2020-01-10T04:21:47.000Z The Mirror 7
## 11492 TheSun 2020-01-10T04:20:00.000Z The Sun 3
## 11493 EveningStandard 2020-01-10T04:17:08.000Z Evening Standard 2
## 11494 EveningStandard 2020-01-10T04:09:58.000Z Evening Standard 1
## 11495 EveningStandard 2020-01-10T04:06:49.000Z Evening Standard 0
## 11496 DailyMirror 2020-01-10T04:05:30.000Z The Mirror 4
## 11497 guardian 2020-01-10T04:04:53.000Z The Guardian 14
## 11498 TheSun 2020-01-10T04:02:55.000Z The Sun 0
## 11499 TheSun 2020-01-10T04:00:00.000Z The Sun 5
## 11500 EveningStandard 2020-01-10T03:59:56.000Z Evening Standard 2
## 11501 DailyMirror 2020-01-10T03:56:00.000Z The Mirror 4
## 11502 guardian 2020-01-10T03:55:09.000Z The Guardian 19
## 11503 DailyMirror 2020-01-10T03:55:06.000Z The Mirror 2
## 11504 DailyMirror 2020-01-10T03:53:00.000Z The Mirror 2
## 11505 EveningStandard 2020-01-10T03:52:52.000Z Evening Standard 0
## 11506 EveningStandard 2020-01-10T03:45:56.000Z Evening Standard 0
## 11507 TheSun 2020-01-10T03:43:01.000Z The Sun 2
## 11508 TheSun 2020-01-10T03:40:00.000Z The Sun 36
## 11509 EveningStandard 2020-01-10T03:38:05.000Z Evening Standard 0
## 11510 DailyMirror 2020-01-10T03:36:00.000Z The Mirror 1
## 11511 EveningStandard 2020-01-10T03:32:11.000Z Evening Standard 0
## 11512 guardian 2020-01-10T03:25:59.000Z The Guardian 12
## 11513 guardian 2020-01-10T03:25:58.000Z The Guardian 40
## 11514 EveningStandard 2020-01-10T03:25:17.000Z Evening Standard 0
## 11515 TheSun 2020-01-10T03:22:21.000Z The Sun 1
## 11516 EveningStandard 2020-01-10T03:21:21.000Z Evening Standard 2
## 11517 TheSun 2020-01-10T03:20:00.000Z The Sun 3
## 11518 EveningStandard 2020-01-10T03:14:28.000Z Evening Standard 0
## 11519 EveningStandard 2020-01-10T03:10:29.000Z Evening Standard 1
## 11520 EveningStandard 2020-01-10T03:05:34.000Z Evening Standard 0
## 11521 TheSun 2020-01-10T03:02:37.000Z The Sun 0
## 11522 EveningStandard 2020-01-10T03:00:40.000Z Evening Standard 1
## 11523 TheSun 2020-01-10T03:00:00.000Z The Sun 51
## 11524 EveningStandard 2020-01-10T02:56:44.000Z Evening Standard 1
## 11525 EveningStandard 2020-01-10T02:51:49.000Z Evening Standard 1
## 11526 DailyMirror 2020-01-10T02:48:29.000Z The Mirror 2
## 11527 EveningStandard 2020-01-10T02:46:54.000Z Evening Standard 0
## 11528 TheSun 2020-01-10T02:42:58.000Z The Sun 2
## 11529 EveningStandard 2020-01-10T02:41:00.000Z Evening Standard 0
## 11530 guardian 2020-01-10T02:40:01.000Z The Guardian 13
## 11531 TheSun 2020-01-10T02:40:00.000Z The Sun 20
## 11532 EveningStandard 2020-01-10T02:36:04.000Z Evening Standard 0
## 11533 DailyMirror 2020-01-10T02:34:00.000Z The Mirror 2
## 11534 EveningStandard 2020-01-10T02:31:09.000Z Evening Standard 0
## 11535 guardian 2020-01-10T02:27:15.000Z The Guardian 5
## 11536 EveningStandard 2020-01-10T02:25:16.000Z Evening Standard 2
## 11537 TheSun 2020-01-10T02:22:18.000Z The Sun 3
## 11538 EveningStandard 2020-01-10T02:20:21.000Z Evening Standard 2
## 11539 TheSun 2020-01-10T02:20:00.000Z The Sun 0
## 11540 EveningStandard 2020-01-10T02:15:10.000Z Evening Standard 0
## 11541 EveningStandard 2020-01-10T02:10:13.000Z Evening Standard 1
## 11542 EveningStandard 2020-01-10T02:05:17.000Z Evening Standard 2
## 11543 TheSun 2020-01-10T02:02:21.000Z The Sun 2
## 11544 TheSun 2020-01-10T02:00:00.000Z The Sun 28
## 11545 EveningStandard 2020-01-10T01:59:23.000Z Evening Standard 0
## 11546 EveningStandard 2020-01-10T01:53:19.000Z Evening Standard 0
## 11547 DailyMirror 2020-01-10T01:52:00.000Z The Mirror 2
## 11548 EveningStandard 2020-01-10T01:47:26.000Z Evening Standard 1
## 11549 DailyMirror 2020-01-10T01:46:00.000Z The Mirror 1
## 11550 TheSun 2020-01-10T01:42:32.000Z The Sun 0
## 11551 EveningStandard 2020-01-10T01:41:33.000Z Evening Standard 0
## 11552 DailyMirror 2020-01-10T01:41:00.000Z The Mirror 1
## 11553 TheSun 2020-01-10T01:40:00.000Z The Sun 18
## 11554 DailyMirror 2020-01-10T01:36:00.000Z The Mirror 2
## 11555 EveningStandard 2020-01-10T01:35:39.000Z Evening Standard 1
## 11556 guardian 2020-01-10T01:31:42.000Z The Guardian 10
## 11557 EveningStandard 2020-01-10T01:29:44.000Z Evening Standard 0
## 11558 EveningStandard 2020-01-10T01:24:48.000Z Evening Standard 1
## 11559 guardian 2020-01-10T01:23:52.000Z The Guardian 19
## 11560 TheSun 2020-01-10T01:22:51.000Z The Sun 1
## 11561 TheSun 2020-01-10T01:20:00.000Z The Sun 15
## 11562 EveningStandard 2020-01-10T01:19:54.000Z Evening Standard 1
## 11563 EveningStandard 2020-01-10T01:14:59.000Z Evening Standard 1
## 11564 guardian 2020-01-10T01:14:22.000Z The Guardian 2
## 11565 EveningStandard 2020-01-10T01:09:05.000Z Evening Standard 0
## 11566 EveningStandard 2020-01-10T01:03:12.000Z Evening Standard 1
## 11567 TheSun 2020-01-10T01:02:12.000Z The Sun 0
## 11568 TheSun 2020-01-10T01:00:00.000Z The Sun 10
## 11569 EveningStandard 2020-01-10T00:56:17.000Z Evening Standard 3
## 11570 DailyMirror 2020-01-10T00:54:27.000Z The Mirror 16
## 11571 EveningStandard 2020-01-10T00:51:24.000Z Evening Standard 0
## 11572 DailyMirror 2020-01-10T00:49:00.000Z The Mirror 4
## 11573 EveningStandard 2020-01-10T00:46:27.000Z Evening Standard 4
## 11574 guardian 2020-01-10T00:45:57.000Z The Guardian 2
## 11575 guardian 2020-01-10T00:45:56.000Z The Guardian 18
## 11576 TheSun 2020-01-10T00:42:33.000Z The Sun 4
## 11577 EveningStandard 2020-01-10T00:42:31.000Z Evening Standard 0
## 11578 TheSun 2020-01-10T00:40:00.000Z The Sun 7
## 11579 EveningStandard 2020-01-10T00:37:37.000Z Evening Standard 3
## 11580 guardian 2020-01-10T00:35:39.000Z The Guardian 35
## 11581 EveningStandard 2020-01-10T00:32:42.000Z Evening Standard 1
## 11582 EveningStandard 2020-01-10T00:27:46.000Z Evening Standard 0
## 11583 guardian 2020-01-10T00:26:47.000Z The Guardian 66
## 11584 TheSun 2020-01-10T00:22:55.000Z The Sun 5
## 11585 EveningStandard 2020-01-10T00:20:55.000Z Evening Standard 2
## 11586 guardian 2020-01-10T00:17:35.000Z The Guardian 20
## 11587 guardian 2020-01-10T00:17:34.000Z The Guardian 17
## 11588 EveningStandard 2020-01-10T00:15:01.000Z Evening Standard 0
## 11589 guardian 2020-01-10T00:13:59.000Z The Guardian 36
## 11590 EveningStandard 2020-01-10T00:07:22.000Z Evening Standard 1
## 11591 DailyMirror 2020-01-10T00:06:00.000Z The Mirror 4
## 11592 DailyMirror 2020-01-10T00:05:00.000Z The Mirror 5
## 11593 guardian 2020-01-10T00:03:19.000Z The Guardian 89
## 11594 TheSun 2020-01-10T00:02:28.000Z The Sun 1
## 11595 EveningStandard 2020-01-10T00:01:29.000Z Evening Standard 0
## 11596 guardian 2020-01-10T00:00:30.000Z The Guardian 9
## 11597 TheSun 2020-01-10T00:00:00.000Z The Sun 8
## 11598 DailyMirror 2020-01-09T23:56:00.000Z The Mirror 2
## 11599 EveningStandard 2020-01-09T23:55:35.000Z Evening Standard 0
## 11600 TheSun 2020-01-09T23:52:38.000Z The Sun 5
## 11601 guardian 2020-01-09T23:52:32.000Z The Guardian 34
## 11602 guardian 2020-01-09T23:52:30.000Z The Guardian 28
## 11603 guardian 2020-01-09T23:52:29.000Z The Guardian 7
## 11604 DailyMirror 2020-01-09T23:52:00.000Z The Mirror 4
## 11605 EveningStandard 2020-01-09T23:51:40.000Z Evening Standard 1
## 11606 TheSun 2020-01-09T23:50:00.000Z The Sun 1
## 11607 DailyMirror 2020-01-09T23:49:00.000Z The Mirror 3
## 11608 DailyMirror 2020-01-09T23:49:00.000Z The Mirror 3
## 11609 DailyMirror 2020-01-09T23:48:00.000Z The Mirror 2
## 11610 EveningStandard 2020-01-09T23:46:42.000Z Evening Standard 0
## 11611 DailyMirror 2020-01-09T23:45:00.000Z The Mirror 3
## 11612 TheSun 2020-01-09T23:42:48.000Z The Sun 5
## 11613 EveningStandard 2020-01-09T23:42:47.000Z Evening Standard 0
## 11614 DailyMailUK 2020-01-09T23:41:07.000Z Daily Mail U.K. 46
## 11615 DailyMirror 2020-01-09T23:41:00.000Z The Mirror 4
## 11616 TheSun 2020-01-09T23:40:00.000Z The Sun 35
## 11617 EveningStandard 2020-01-09T23:37:54.000Z Evening Standard 0
## 11618 DailyMirror 2020-01-09T23:36:00.000Z The Mirror 1
## 11619 DailyMirror 2020-01-09T23:36:00.000Z The Mirror 1
## 11620 guardian 2020-01-09T23:34:55.000Z The Guardian 3
## 11621 DailyMirror 2020-01-09T23:34:00.000Z The Mirror 1
## 11622 DailyMirror 2020-01-09T23:33:00.000Z The Mirror 2
## 11623 EveningStandard 2020-01-09T23:31:58.000Z Evening Standard 5
## 11624 TheSun 2020-01-09T23:30:00.000Z The Sun 19
## 11625 guardian 2020-01-09T23:29:09.000Z The Guardian 19
## 11626 EveningStandard 2020-01-09T23:29:00.000Z Evening Standard 3
## 11627 DailyMirror 2020-01-09T23:29:00.000Z The Mirror 11
## 11628 DailyMirror 2020-01-09T23:27:49.000Z The Mirror 4
## 11629 DailyMirror 2020-01-09T23:24:59.000Z The Mirror 4
## 11630 guardian 2020-01-09T23:24:17.000Z The Guardian 2
## 11631 guardian 2020-01-09T23:24:16.000Z The Guardian 0
## 11632 guardian 2020-01-09T23:24:15.000Z The Guardian 2
## 11633 EveningStandard 2020-01-09T23:24:07.000Z Evening Standard 0
## 11634 TheSun 2020-01-09T23:23:07.000Z The Sun 0
## 11635 DailyMirror 2020-01-09T23:22:52.000Z The Mirror 169
## 11636 TheSun 2020-01-09T23:22:08.000Z The Sun 6
## 11637 Telegraph 2020-01-09T23:21:10.000Z The Telegraph 41
## 11638 EveningStandard 2020-01-09T23:21:08.000Z Evening Standard 2
## 11639 TheSun 2020-01-09T23:20:00.000Z The Sun 6
## 11640 DailyMailUK 2020-01-09T23:19:03.000Z Daily Mail U.K. 1
## 11641 EveningStandard 2020-01-09T23:17:14.000Z Evening Standard 3
## 11642 DailyMirror 2020-01-09T23:16:28.000Z The Mirror 4
## 11643 DailyMirror 2020-01-09T23:14:24.000Z The Mirror 1
## 11644 EveningStandard 2020-01-09T23:13:17.000Z Evening Standard 1
## 11645 DailyMirror 2020-01-09T23:12:56.000Z The Mirror 8
## 11646 DailyMirror 2020-01-09T23:12:52.000Z The Mirror 3
## 11647 TheSun 2020-01-09T23:12:17.000Z The Sun 1
## 11648 DailyMirror 2020-01-09T23:12:00.000Z The Mirror 1
## 11649 TheSun 2020-01-09T23:10:00.000Z The Sun 3
## 11650 EveningStandard 2020-01-09T23:09:30.000Z Evening Standard 0
## 11651 DailyMirror 2020-01-09T23:06:00.000Z The Mirror 2
## 11652 Telegraph 2020-01-09T23:05:25.000Z The Telegraph 23
## 11653 DailyMirror 2020-01-09T23:05:00.000Z The Mirror 2
## 11654 DailyMirror 2020-01-09T23:05:00.000Z The Mirror 2
## 11655 EveningStandard 2020-01-09T23:04:36.000Z Evening Standard 0
## 11656 TheSun 2020-01-09T23:02:38.000Z The Sun 1
## 11657 guardian 2020-01-09T23:01:40.000Z The Guardian 5
## 11658 DailyMirror 2020-01-09T23:01:00.000Z The Mirror 2
## 11659 MetroUK 2020-01-09T23:00:17.000Z Metro 2
## 11660 DailyMailUK 2020-01-09T23:00:10.000Z Daily Mail U.K. 19
## 11661 DailyMirror 2020-01-09T23:00:05.000Z The Mirror 10
## 11662 DailyMirror 2020-01-09T23:00:00.000Z The Mirror 0
## 11663 TheSun 2020-01-09T23:00:00.000Z The Sun 10
## 11664 EveningStandard 2020-01-09T22:58:33.000Z Evening Standard 1
## 11665 Telegraph 2020-01-09T22:57:36.000Z The Telegraph 4
## 11666 TheSun 2020-01-09T22:56:31.000Z The Sun 34
## 11667 DailyMirror 2020-01-09T22:56:00.000Z The Mirror 3
## 11668 EveningStandard 2020-01-09T22:53:38.000Z Evening Standard 0
## 11669 TheSun 2020-01-09T22:52:40.000Z The Sun 1
## 11670 guardian 2020-01-09T22:52:40.000Z The Guardian 16
## 11671 DailyMirror 2020-01-09T22:52:00.000Z The Mirror 3
## 11672 TheSun 2020-01-09T22:51:50.000Z The Sun 3
## 11673 TheSun 2020-01-09T22:50:00.000Z The Sun 5
## 11674 DailyMirror 2020-01-09T22:49:00.000Z The Mirror 5
## 11675 DailyMirror 2020-01-09T22:49:00.000Z The Mirror 4
## 11676 EveningStandard 2020-01-09T22:48:44.000Z Evening Standard 0
## 11677 DailyMirror 2020-01-09T22:45:00.000Z The Mirror 3
## 11678 DailyMirror 2020-01-09T22:45:00.000Z The Mirror 3
## 11679 EveningStandard 2020-01-09T22:44:46.000Z Evening Standard 0
## 11680 TheSun 2020-01-09T22:42:50.000Z The Sun 7
## 11681 Telegraph 2020-01-09T22:41:54.000Z The Telegraph 2
## 11682 DailyMailUK 2020-01-09T22:41:02.000Z Daily Mail U.K. 6
## 11683 EveningStandard 2020-01-09T22:40:51.000Z Evening Standard 0
## 11684 DailyMirror 2020-01-09T22:40:00.000Z The Mirror 6
## 11685 TheSun 2020-01-09T22:40:00.000Z The Sun 0
## 11686 TheSun 2020-01-09T22:38:24.000Z The Sun 15
## 11687 TheSun 2020-01-09T22:38:24.000Z The Sun 6
## 11688 EveningStandard 2020-01-09T22:37:53.000Z Evening Standard 1
## 11689 DailyMirror 2020-01-09T22:37:00.000Z The Mirror 3
## 11690 DailyMirror 2020-01-09T22:37:00.000Z The Mirror 2
## 11691 TheSun 2020-01-09T22:36:07.000Z The Sun 14
## 11692 DailyMirror 2020-01-09T22:36:00.000Z The Mirror 3
## 11693 TheSun 2020-01-09T22:35:21.000Z The Sun 8
## 11694 TheSun 2020-01-09T22:33:02.000Z The Sun 3
## 11695 EveningStandard 2020-01-09T22:33:01.000Z Evening Standard 0
## 11696 DailyMirror 2020-01-09T22:33:00.000Z The Mirror 6
## 11697 DailyMirror 2020-01-09T22:31:00.000Z The Mirror 1
## 11698 DailyMirror 2020-01-09T22:30:34.000Z The Mirror 8
## 11699 MetroUK 2020-01-09T22:30:10.000Z Metro 2
## 11700 TheSun 2020-01-09T22:30:00.000Z The Sun 3
## 11701 TheSun 2020-01-09T22:29:24.000Z The Sun 6
## 11702 DailyMirror 2020-01-09T22:29:12.000Z The Mirror 5
## 11703 TheSun 2020-01-09T22:29:04.000Z The Sun 155
## 11704 EveningStandard 2020-01-09T22:29:03.000Z Evening Standard 5
## 11705 DailyMirror 2020-01-09T22:29:00.000Z The Mirror 2
## 11706 guardian 2020-01-09T22:28:53.000Z The Guardian 28
## 11707 TheSun 2020-01-09T22:28:20.000Z The Sun 10
## 11708 guardian 2020-01-09T22:28:04.000Z The Guardian 20
## 11709 Telegraph 2020-01-09T22:27:08.000Z The Telegraph 0
## 11710 DailyMirror 2020-01-09T22:25:24.000Z The Mirror 5
## 11711 DailyMirror 2020-01-09T22:24:37.000Z The Mirror 3
## 11712 EveningStandard 2020-01-09T22:24:07.000Z Evening Standard 0
## 11713 TheSun 2020-01-09T22:22:08.000Z The Sun 1
## 11714 DailyMirror 2020-01-09T22:22:00.000Z The Mirror 2
## 11715 EveningStandard 2020-01-09T22:20:11.000Z Evening Standard 1
## 11716 DailyMailUK 2020-01-09T22:20:06.000Z Daily Mail U.K. 2
## 11717 TheSun 2020-01-09T22:20:00.000Z The Sun 3
## 11718 TheSun 2020-01-09T22:19:31.000Z The Sun 1
## 11719 TheSun 2020-01-09T22:19:25.000Z The Sun 42
## 11720 DailyMirror 2020-01-09T22:18:44.000Z The Mirror 15
## 11721 TheSun 2020-01-09T22:18:13.000Z The Sun 3
## 11722 guardian 2020-01-09T22:17:15.000Z The Guardian 4
## 11723 EveningStandard 2020-01-09T22:16:15.000Z Evening Standard 0
## 11724 DailyMirror 2020-01-09T22:14:00.000Z The Mirror 3
## 11725 Telegraph 2020-01-09T22:13:19.000Z The Telegraph 2
## 11726 DailyMirror 2020-01-09T22:13:00.000Z The Mirror 0
## 11727 TheSun 2020-01-09T22:12:21.000Z The Sun 0
## 11728 EveningStandard 2020-01-09T22:12:19.000Z Evening Standard 0
## 11729 DailyMailUK 2020-01-09T22:12:17.000Z Daily Mail U.K. 19
## 11730 DailyMailUK 2020-01-09T22:10:01.000Z Daily Mail U.K. 183
## 11731 TheSun 2020-01-09T22:10:00.000Z The Sun 30
## 11732 guardian 2020-01-09T22:08:25.000Z The Guardian 17
## 11733 EveningStandard 2020-01-09T22:08:25.000Z Evening Standard 1
## 11734 DailyMirror 2020-01-09T22:08:00.000Z The Mirror 2
## 11735 TheSun 2020-01-09T22:06:40.000Z The Sun 2
## 11736 TheSun 2020-01-09T22:06:03.000Z The Sun 0
## 11737 DailyMirror 2020-01-09T22:06:00.000Z The Mirror 3
## 11738 EveningStandard 2020-01-09T22:04:28.000Z Evening Standard 2
## 11739 DailyMirror 2020-01-09T22:04:00.000Z The Mirror 2
## 11740 TheSun 2020-01-09T22:02:31.000Z The Sun 2
## 11741 DailyMirror 2020-01-09T22:01:00.000Z The Mirror 6
## 11742 MetroUK 2020-01-09T22:00:22.000Z Metro 173
## 11743 DailyMailUK 2020-01-09T22:00:05.000Z Daily Mail U.K. 13
## 11744 DailyMirror 2020-01-09T22:00:00.000Z The Mirror 1
## 11745 TheSun 2020-01-09T22:00:00.000Z The Sun 25
## 11746 guardian 2020-01-09T21:59:56.000Z The Guardian 5
## 11747 TheSun 2020-01-09T21:59:50.000Z The Sun 3
## 11748 EveningStandard 2020-01-09T21:59:41.000Z Evening Standard 0
## 11749 DailyMirror 2020-01-09T21:59:00.000Z The Mirror 6
## 11750 TheSun 2020-01-09T21:58:56.000Z The Sun 2
## 11751 Telegraph 2020-01-09T21:58:46.000Z The Telegraph 9
## 11752 guardian 2020-01-09T21:57:41.000Z The Guardian 37
## 11753 guardian 2020-01-09T21:57:02.000Z The Guardian 12
## 11754 DailyMirror 2020-01-09T21:56:00.000Z The Mirror 4
## 11755 DailyMirror 2020-01-09T21:55:00.000Z The Mirror 2
## 11756 EveningStandard 2020-01-09T21:54:53.000Z Evening Standard 0
## 11757 DailyMirror 2020-01-09T21:53:30.000Z The Mirror 21
## 11758 DailyMirror 2020-01-09T21:53:00.000Z The Mirror 7
## 11759 TheSun 2020-01-09T21:52:45.000Z The Sun 2
## 11760 DailyMirror 2020-01-09T21:52:00.000Z The Mirror 5
## 11761 DailyMirror 2020-01-09T21:52:00.000Z The Mirror 4
## 11762 guardian 2020-01-09T21:51:46.000Z The Guardian 31
## 11763 DailyMirror 2020-01-09T21:51:25.000Z The Mirror 14
## 11764 EveningStandard 2020-01-09T21:50:47.000Z Evening Standard 3
## 11765 TheSun 2020-01-09T21:50:00.000Z The Sun 20
## 11766 DailyMirror 2020-01-09T21:50:00.000Z The Mirror 5
## 11767 DailyMirror 2020-01-09T21:48:00.000Z The Mirror 12
## 11768 DailyMirror 2020-01-09T21:47:14.000Z The Mirror 3
## 11769 DailyMirror 2020-01-09T21:47:00.000Z The Mirror 1
## 11770 TheSun 2020-01-09T21:46:07.000Z The Sun 1
## 11771 DailyMirror 2020-01-09T21:46:01.000Z The Mirror 3
## 11772 DailyMirror 2020-01-09T21:46:00.000Z The Mirror 3
## 11773 EveningStandard 2020-01-09T21:45:53.000Z Evening Standard 3
## 11774 DailyMirror 2020-01-09T21:45:00.000Z The Mirror 6
## 11775 DailyMirror 2020-01-09T21:44:42.000Z The Mirror 2
## 11776 TheSun 2020-01-09T21:44:37.000Z The Sun 2
## 11777 DailyMirror 2020-01-09T21:44:14.000Z The Mirror 7
## 11778 DailyMirror 2020-01-09T21:44:05.000Z The Mirror 3
## 11779 DailyMirror 2020-01-09T21:44:00.000Z The Mirror 1
## 11780 Telegraph 2020-01-09T21:43:47.000Z The Telegraph 25
## 11781 EveningStandard 2020-01-09T21:43:45.000Z Evening Standard 1
## 11782 TheSun 2020-01-09T21:42:47.000Z The Sun 3
## 11783 guardian 2020-01-09T21:42:45.000Z The Guardian 16
## 11784 EveningStandard 2020-01-09T21:41:44.000Z Evening Standard 0
## 11785 thetimes 2020-01-09T21:40:09.000Z The Times 152
## 11786 DailyMailUK 2020-01-09T21:40:06.000Z Daily Mail U.K. 2
## 11787 DailyMirror 2020-01-09T21:40:00.000Z The Mirror 6
## 11788 TheSun 2020-01-09T21:40:00.000Z The Sun 17
## 11789 DailyMirror 2020-01-09T21:39:03.000Z The Mirror 5
## 11790 EveningStandard 2020-01-09T21:37:59.000Z Evening Standard 2
## 11791 DailyMirror 2020-01-09T21:37:00.000Z The Mirror 3
## 11792 EveningStandard 2020-01-09T21:36:03.000Z Evening Standard 2
## 11793 DailyMirror 2020-01-09T21:36:00.000Z The Mirror 4
## 11794 DailyMirror 2020-01-09T21:34:54.000Z The Mirror 4
## 11795 guardian 2020-01-09T21:32:57.000Z The Guardian 18
## 11796 guardian 2020-01-09T21:32:56.000Z The Guardian 11
## 11797 TheSun 2020-01-09T21:32:56.000Z The Sun 2
## 11798 guardian 2020-01-09T21:32:56.000Z The Guardian 0
## 11799 guardian 2020-01-09T21:32:55.000Z The Guardian 25
## 11800 EveningStandard 2020-01-09T21:31:56.000Z Evening Standard 14
## 11801 DailyMirror 2020-01-09T21:31:30.000Z The Mirror 9
## 11802 DailyMirror 2020-01-09T21:31:00.000Z The Mirror 0
## 11803 DailyMirror 2020-01-09T21:31:00.000Z The Mirror 1
## 11804 DailyMirror 2020-01-09T21:31:00.000Z The Mirror 1
## 11805 MetroUK 2020-01-09T21:30:11.000Z Metro 1
## 11806 TheSun 2020-01-09T21:30:00.000Z The Sun 7
## 11807 DailyMirror 2020-01-09T21:29:00.000Z The Mirror 2
## 11808 Telegraph 2020-01-09T21:28:59.000Z The Telegraph 13
## 11809 TheSun 2020-01-09T21:27:14.000Z The Sun 1
## 11810 guardian 2020-01-09T21:25:02.000Z The Guardian 20
## 11811 EveningStandard 2020-01-09T21:24:02.000Z Evening Standard 1
## 11812 TheSun 2020-01-09T21:23:04.000Z The Sun 6
## 11813 DailyMirror 2020-01-09T21:21:00.000Z The Mirror 5
## 11814 DailyMailUK 2020-01-09T21:20:09.000Z Daily Mail U.K. 4
## 11815 TheSun 2020-01-09T21:20:00.000Z The Sun 19
## 11816 DailyMirror 2020-01-09T21:19:11.000Z The Mirror 7
## 11817 EveningStandard 2020-01-09T21:18:03.000Z Evening Standard 0
## 11818 TheSun 2020-01-09T21:17:56.000Z The Sun 1
## 11819 thetimes 2020-01-09T21:16:25.000Z The Times 4
## 11820 guardian 2020-01-09T21:16:24.000Z The Guardian 44
## 11821 DailyMirror 2020-01-09T21:16:00.000Z The Mirror 3
## 11822 DailyMirror 2020-01-09T21:14:20.000Z The Mirror 2
## 11823 TheSun 2020-01-09T21:13:08.000Z The Sun 3
## 11824 Telegraph 2020-01-09T21:13:01.000Z The Telegraph 14
## 11825 DailyMirror 2020-01-09T21:13:00.000Z The Mirror 2
## 11826 TheSun 2020-01-09T21:12:18.000Z The Sun 2
## 11827 TheSun 2020-01-09T21:10:00.000Z The Sun 24
## 11828 DailyMirror 2020-01-09T21:09:24.000Z The Mirror 3
## 11829 guardian 2020-01-09T21:06:54.000Z The Guardian 58
## 11830 EveningStandard 2020-01-09T21:05:27.000Z Evening Standard 0
## 11831 guardian 2020-01-09T21:04:29.000Z The Guardian 38
## 11832 DailyMirror 2020-01-09T21:02:42.000Z The Mirror 0
## 11833 TheSun 2020-01-09T21:02:31.000Z The Sun 4
## 11834 TheSun 2020-01-09T21:01:16.000Z The Sun 40
## 11835 DailyMirror 2020-01-09T21:01:00.000Z The Mirror 1
## 11836 Telegraph 2020-01-09T21:00:50.000Z The Telegraph 4
## 11837 TheSun 2020-01-09T21:00:49.000Z The Sun 5
## 11838 DailyMailUK 2020-01-09T21:00:05.000Z Daily Mail U.K. 7
## 11839 TheSun 2020-01-09T21:00:00.000Z The Sun 11
## 11840 DailyMirror 2020-01-09T21:00:00.000Z The Mirror 1
## 11841 DailyMirror 2020-01-09T20:57:29.000Z The Mirror 14
## 11842 TheSun 2020-01-09T20:57:02.000Z The Sun 6
## 11843 DailyMirror 2020-01-09T20:56:00.000Z The Mirror 3
## 11844 EveningStandard 2020-01-09T20:55:45.000Z Evening Standard 1
## 11845 guardian 2020-01-09T20:54:25.000Z The Guardian 19
## 11846 TheSun 2020-01-09T20:52:28.000Z The Sun 3
## 11847 TheSun 2020-01-09T20:52:27.000Z The Sun 7
## 11848 DailyMirror 2020-01-09T20:52:00.000Z The Mirror 4
## 11849 DailyMirror 2020-01-09T20:52:00.000Z The Mirror 4
## 11850 DailyMirror 2020-01-09T20:52:00.000Z The Mirror 0
## 11851 TheSun 2020-01-09T20:50:00.000Z The Sun 7
## 11852 DailyMirror 2020-01-09T20:49:19.000Z The Mirror 11
## 11853 DailyMirror 2020-01-09T20:49:02.000Z The Mirror 2
## 11854 DailyMirror 2020-01-09T20:48:00.000Z The Mirror 5
## 11855 guardian 2020-01-09T20:46:41.000Z The Guardian 31
## 11856 DailyMirror 2020-01-09T20:46:09.000Z The Mirror 3
## 11857 EveningStandard 2020-01-09T20:45:34.000Z Evening Standard 1
## 11858 Telegraph 2020-01-09T20:45:18.000Z The Telegraph 44
## 11859 DailyMirror 2020-01-10T14:55:46.000Z The Mirror 14
## 11860 guardian 2020-01-10T14:54:34.000Z The Guardian 104
## 11861 TheSun 2020-01-10T14:52:23.000Z The Sun 4
## 11862 DailyMailUK 2020-01-10T14:50:04.000Z Daily Mail U.K. 3
## 11863 TheSun 2020-01-10T14:50:00.000Z The Sun 6
## 11864 TheSun 2020-01-10T14:47:43.000Z The Sun 1
## 11865 EveningStandard 2020-01-10T14:47:22.000Z Evening Standard 1
## 11866 thetimes 2020-01-10T14:46:10.000Z The Times 3
## 11867 Telegraph 2020-01-10T14:46:08.000Z The Telegraph 13
## 11868 guardian 2020-01-10T14:44:08.000Z The Guardian 4
## 11869 TheSun 2020-01-10T14:42:51.000Z The Sun 0
## 11870 DailyMirror 2020-01-10T14:42:00.000Z The Mirror 2
## 11871 DailyMailUK 2020-01-10T14:41:09.000Z Daily Mail U.K. 10
## 11872 DailyMailUK 2020-01-10T14:40:09.000Z Daily Mail U.K. 5
## 11873 DailyMirror 2020-01-10T14:40:00.000Z The Mirror 3
## 11874 TheSun 2020-01-10T14:40:00.000Z The Sun 10
## 11875 DailyMirror 2020-01-10T14:38:18.000Z The Mirror 2
## 11876 DailyMirror 2020-01-10T14:37:29.000Z The Mirror 2
## 11877 thetimes 2020-01-10T14:37:02.000Z The Times 0
## 11878 EveningStandard 2020-01-10T14:37:01.000Z Evening Standard 0
## 11879 guardian 2020-01-10T14:36:06.000Z The Guardian 23
## 11880 DailyMirror 2020-01-10T14:35:00.000Z The Mirror 4
## 11881 TheSun 2020-01-10T14:33:00.000Z The Sun 4
## 11882 Telegraph 2020-01-10T14:31:12.000Z The Telegraph 5
## 11883 DailyMirror 2020-01-10T14:31:07.000Z The Mirror 21
## 11884 MetroUK 2020-01-10T14:30:11.000Z Metro 11
## 11885 DailyMailUK 2020-01-10T14:30:05.000Z Daily Mail U.K. 9
## 11886 TheSun 2020-01-10T14:30:00.000Z The Sun 50
## 11887 Telegraph 2020-01-10T14:29:07.000Z The Telegraph 15
## 11888 guardian 2020-01-10T14:27:58.000Z The Guardian 10
## 11889 EveningStandard 2020-01-10T14:26:05.000Z Evening Standard 0
## 11890 DailyMirror 2020-01-10T14:26:03.000Z The Mirror 0
## 11891 Telegraph 2020-01-10T14:25:30.000Z The Telegraph 7
## 11892 DailyMirror 2020-01-10T14:25:03.000Z The Mirror 3
## 11893 TheSun 2020-01-10T14:22:31.000Z The Sun 1
## 11894 DailyMirror 2020-01-10T14:22:25.000Z The Mirror 7
## 11895 DailyMirror 2020-01-10T14:20:08.000Z The Mirror 1
## 11896 DailyMailUK 2020-01-10T14:20:05.000Z Daily Mail U.K. 5
## 11897 TheSun 2020-01-10T14:20:00.000Z The Sun 49
## 11898 DailyMirror 2020-01-10T14:19:34.000Z The Mirror 1
## 11899 guardian 2020-01-10T14:18:39.000Z The Guardian 5
## 11900 DailyMirror 2020-01-10T14:17:15.000Z The Mirror 3
## 11901 EveningStandard 2020-01-10T14:16:33.000Z Evening Standard 5
## 11902 Telegraph 2020-01-10T14:15:35.000Z The Telegraph 2
## 11903 DailyMirror 2020-01-10T14:14:18.000Z The Mirror 6
## 11904 TheSun 2020-01-10T14:12:35.000Z The Sun 1
## 11905 DailyMailUK 2020-01-10T14:12:17.000Z Daily Mail U.K. 25
## 11906 DailyMirror 2020-01-10T14:12:11.000Z The Mirror 1
## 11907 DailyMailUK 2020-01-10T14:11:53.000Z Daily Mail U.K. 39
## 11908 DailyMailUK 2020-01-10T14:10:06.000Z Daily Mail U.K. 0
## 11909 TheSun 2020-01-10T14:10:00.000Z The Sun 4
## 11910 thetimes 2020-01-10T14:09:40.000Z The Times 7
## 11911 Telegraph 2020-01-10T14:08:00.000Z The Telegraph 8
## 11912 Telegraph 2020-01-10T14:07:47.000Z The Telegraph 273
## 11913 guardian 2020-01-10T14:07:39.000Z The Guardian 1
## 11914 guardian 2020-01-10T14:07:38.000Z The Guardian 1
## 11915 guardian 2020-01-10T14:07:37.000Z The Guardian 2
## 11916 EveningStandard 2020-01-10T14:06:42.000Z Evening Standard 0
## 11917 Telegraph 2020-01-10T14:05:38.000Z The Telegraph 6
## 11918 Telegraph 2020-01-10T14:04:46.000Z The Telegraph 56
## 11919 Telegraph 2020-01-10T14:03:35.000Z The Telegraph 28
## 11920 MetroUK 2020-01-10T14:03:25.000Z Metro 2
## 11921 guardian 2020-01-10T14:03:21.000Z The Guardian 15
## 11922 TheSun 2020-01-10T14:02:49.000Z The Sun 4
## 11923 Telegraph 2020-01-10T14:00:53.000Z The Telegraph 6
## 11924 MetroUK 2020-01-10T14:00:09.000Z Metro 1
## 11925 DailyMailUK 2020-01-10T14:00:07.000Z Daily Mail U.K. 3
## 11926 TheSun 2020-01-10T14:00:01.000Z The Sun 1
## 11927 DailyMirror 2020-01-10T14:00:01.000Z The Mirror 0
## 11928 EveningStandard 2020-01-10T14:00:00.000Z Evening Standard 7
## 11929 Telegraph 2020-01-10T13:59:31.000Z The Telegraph 4
## 11930 DailyMailUK 2020-01-10T13:58:02.000Z Daily Mail U.K. 453
## 11931 TheSun 2020-01-10T13:57:53.000Z The Sun 1
## 11932 guardian 2020-01-10T13:57:20.000Z The Guardian 53
## 11933 EveningStandard 2020-01-10T13:56:49.000Z Evening Standard 3
## 11934 Telegraph 2020-01-10T13:56:40.000Z The Telegraph 9
## 11935 guardian 2020-01-10T13:54:47.000Z The Guardian 2
## 11936 Telegraph 2020-01-10T13:53:20.000Z The Telegraph 75
## 11937 Telegraph 2020-01-10T13:52:05.000Z The Telegraph 24
## 11938 TheSun 2020-01-10T13:51:41.000Z The Sun 1
## 11939 thetimes 2020-01-10T13:50:50.000Z The Times 3
## 11940 DailyMirror 2020-01-10T13:50:24.000Z The Mirror 1
## 11941 DailyMirror 2020-01-10T13:50:17.000Z The Mirror 4
## 11942 DailyMailUK 2020-01-10T13:50:05.000Z Daily Mail U.K. 5
## 11943 TheSun 2020-01-10T13:50:00.000Z The Sun 11
## 11944 Telegraph 2020-01-10T13:50:00.000Z The Telegraph 12
## 11945 EveningStandard 2020-01-10T13:48:48.000Z Evening Standard 0
## 11946 TheSun 2020-01-10T13:48:36.000Z The Sun 11
## 11947 Telegraph 2020-01-10T13:45:55.000Z The Telegraph 4
## 11948 guardian 2020-01-10T13:45:51.000Z The Guardian 38
## 11949 DailyMailUK 2020-01-10T13:45:28.000Z Daily Mail U.K. 6
## 11950 TheSun 2020-01-10T13:43:51.000Z The Sun 3
## 11951 DailyMirror 2020-01-10T13:43:25.000Z The Mirror 4
## 11952 DailyMirror 2020-01-10T13:43:00.000Z The Mirror 3
## 11953 TheSun 2020-01-10T13:42:47.000Z The Sun 0
## 11954 DailyMailUK 2020-01-10T13:42:02.000Z Daily Mail U.K. 3
## 11955 DailyMirror 2020-01-10T13:42:00.000Z The Mirror 3
## 11956 MetroUK 2020-01-10T13:41:49.000Z Metro 3
## 11957 guardian 2020-01-10T13:40:39.000Z The Guardian 138
## 11958 TheSun 2020-01-10T13:40:00.000Z The Sun 23
## 11959 guardian 2020-01-10T13:39:59.000Z The Guardian 14
## 11960 EveningStandard 2020-01-10T13:39:59.000Z Evening Standard 3
## 11961 guardian 2020-01-10T13:39:58.000Z The Guardian 63
## 11962 DailyMailUK 2020-01-10T13:38:01.000Z Daily Mail U.K. 9
## 11963 guardian 2020-01-10T13:36:36.000Z The Guardian 15
## 11964 DailyMirror 2020-01-10T13:36:00.000Z The Mirror 1
## 11965 DailyMirror 2020-01-10T13:35:37.000Z The Mirror 2
## 11966 EveningStandard 2020-01-10T13:34:39.000Z Evening Standard 1
## 11967 DailyMirror 2020-01-10T13:34:13.000Z The Mirror 5
## 11968 TheSun 2020-01-10T13:32:41.000Z The Sun 4
## 11969 DailyMirror 2020-01-10T13:31:18.000Z The Mirror 5
## 11970 DailyMirror 2020-01-10T13:30:55.000Z The Mirror 6
## 11971 Telegraph 2020-01-10T13:30:49.000Z The Telegraph 25
## 11972 thetimes 2020-01-10T13:30:48.000Z The Times 4
## 11973 DailyMailUK 2020-01-10T13:30:14.000Z Daily Mail U.K. 13
## 11974 MetroUK 2020-01-10T13:30:09.000Z Metro 5
## 11975 DailyMailUK 2020-01-10T13:30:04.000Z Daily Mail U.K. 10
## 11976 TheSun 2020-01-10T13:30:00.000Z The Sun 6
## 11977 DailyMirror 2020-01-10T13:29:51.000Z The Mirror 4
## 11978 MetroUK 2020-01-10T13:29:49.000Z Metro 10
## 11979 guardian 2020-01-10T13:27:44.000Z The Guardian 47
## 11980 TheSun 2020-01-10T13:27:41.000Z The Sun 1
## 11981 DailyMirror 2020-01-10T13:27:32.000Z The Mirror 6
## 11982 EveningStandard 2020-01-10T13:25:44.000Z Evening Standard 0
## 11983 DailyMailUK 2020-01-10T13:23:34.000Z Daily Mail U.K. 4
## 11984 guardian 2020-01-10T13:22:45.000Z The Guardian 11
## 11985 TheSun 2020-01-10T13:22:44.000Z The Sun 1
## 11986 DailyMirror 2020-01-10T13:21:56.000Z The Mirror 2
## 11987 DailyMailUK 2020-01-10T13:21:04.000Z Daily Mail U.K. 39
## 11988 TheSun 2020-01-10T13:20:00.000Z The Sun 11
## 11989 DailyMirror 2020-01-10T13:19:43.000Z The Mirror 0
## 11990 EveningStandard 2020-01-10T13:16:38.000Z Evening Standard 1
## 11991 DailyMailUK 2020-01-10T13:16:35.000Z Daily Mail U.K. 4
## 11992 DailyMirror 2020-01-10T13:15:33.000Z The Mirror 3
## 11993 Telegraph 2020-01-10T13:15:31.000Z The Telegraph 1
## 11994 DailyMirror 2020-01-10T13:13:00.000Z The Mirror 0
## 11995 DailyMirror 2020-01-10T13:12:36.000Z The Mirror 5
## 11996 TheSun 2020-01-10T13:12:27.000Z The Sun 1
## 11997 MetroUK 2020-01-10T13:12:00.000Z Metro 1
## 11998 guardian 2020-01-10T13:11:33.000Z The Guardian 10
## 11999 guardian 2020-01-10T13:11:33.000Z The Guardian 0
## 12000 guardian 2020-01-10T13:11:32.000Z The Guardian 3
## 12001 guardian 2020-01-10T13:11:30.000Z The Guardian 14
## 12002 guardian 2020-01-10T13:11:29.000Z The Guardian 1
## 12003 DailyMailUK 2020-01-10T13:11:04.000Z Daily Mail U.K. 2
## 12004 TheSun 2020-01-10T13:10:00.000Z The Sun 11
## 12005 DailyMailUK 2020-01-10T13:07:53.000Z Daily Mail U.K. 25
## 12006 EveningStandard 2020-01-10T13:07:33.000Z Evening Standard 0
## 12007 DailyMirror 2020-01-10T13:07:14.000Z The Mirror 10
## 12008 DailyMirror 2020-01-10T13:05:44.000Z The Mirror 0
## 12009 Telegraph 2020-01-10T13:03:20.000Z The Telegraph 6
## 12010 Telegraph 2020-01-10T13:03:16.000Z The Telegraph 24
## 12011 Telegraph 2020-01-10T13:03:10.000Z The Telegraph 14
## 12012 DailyMailUK 2020-01-10T13:03:01.000Z Daily Mail U.K. 33
## 12013 DailyMirror 2020-01-10T13:03:00.000Z The Mirror 1
## 12014 TheSun 2020-01-10T13:02:37.000Z The Sun 1
## 12015 DailyMirror 2020-01-10T13:02:26.000Z The Mirror 1
## 12016 DailyMailUK 2020-01-10T13:01:25.000Z Daily Mail U.K. 30
## 12017 EveningStandard 2020-01-10T13:00:42.000Z Evening Standard 5
## 12018 Telegraph 2020-01-10T13:00:38.000Z The Telegraph 5
## 12019 MetroUK 2020-01-10T13:00:09.000Z Metro 0
## 12020 TheSun 2020-01-10T13:00:00.000Z The Sun 7
## 12021 guardian 2020-01-10T13:00:00.000Z The Guardian 5
## 12022 EveningStandard 2020-01-10T12:59:26.000Z Evening Standard 0
## 12023 DailyMailUK 2020-01-10T12:59:04.000Z Daily Mail U.K. 0
## 12024 DailyMirror 2020-01-10T12:59:01.000Z The Mirror 3
## 12025 TheSun 2020-01-10T12:57:51.000Z The Sun 2
## 12026 DailyMirror 2020-01-10T12:54:56.000Z The Mirror 1
## 12027 TheSun 2020-01-10T12:52:32.000Z The Sun 1
## 12028 EveningStandard 2020-01-10T12:51:34.000Z Evening Standard 0
## 12029 DailyMailUK 2020-01-10T12:51:03.000Z Daily Mail U.K. 1
## 12030 guardian 2020-01-10T12:50:55.000Z The Guardian 74
## 12031 DailyMirror 2020-01-10T12:50:23.000Z The Mirror 5
## 12032 TheSun 2020-01-10T12:50:00.000Z The Sun 7
## 12033 MetroUK 2020-01-10T12:49:53.000Z Metro 3
## 12034 DailyMirror 2020-01-10T12:48:09.000Z The Mirror 3
## 12035 DailyMailUK 2020-01-10T12:47:47.000Z Daily Mail U.K. 27
## 12036 DailyMailUK 2020-01-10T12:47:33.000Z Daily Mail U.K. 4
## 12037 DailyMailUK 2020-01-10T12:47:30.000Z Daily Mail U.K. 4
## 12038 Telegraph 2020-01-10T12:45:44.000Z The Telegraph 23
## 12039 MetroUK 2020-01-10T12:44:26.000Z Metro 15
## 12040 EveningStandard 2020-01-10T12:43:55.000Z Evening Standard 7
## 12041 DailyMirror 2020-01-10T12:43:11.000Z The Mirror 4
## 12042 DailyMirror 2020-01-10T12:42:52.000Z The Mirror 1
## 12043 TheSun 2020-01-10T12:42:42.000Z The Sun 2
## 12044 DailyMailUK 2020-01-10T12:41:06.000Z Daily Mail U.K. 2
## 12045 guardian 2020-01-10T12:40:18.000Z The Guardian 1
## 12046 guardian 2020-01-10T12:40:17.000Z The Guardian 0
## 12047 TheSun 2020-01-10T12:40:00.000Z The Sun 11
## 12048 Telegraph 2020-01-10T12:38:59.000Z The Telegraph 3
## 12049 thetimes 2020-01-10T12:38:26.000Z The Times 9
## 12050 thetimes 2020-01-10T12:37:47.000Z The Times 9
## 12051 EveningStandard 2020-01-10T12:35:54.000Z Evening Standard 0
## 12052 DailyMailUK 2020-01-10T12:33:24.000Z Daily Mail U.K. 3
## 12053 DailyMailUK 2020-01-10T12:33:15.000Z Daily Mail U.K. 6
## 12054 TheSun 2020-01-10T12:32:09.000Z The Sun 5
## 12055 DailyMirror 2020-01-10T12:32:06.000Z The Mirror 9
## 12056 Telegraph 2020-01-10T12:31:10.000Z The Telegraph 3
## 12057 MetroUK 2020-01-10T12:30:08.000Z Metro 2
## 12058 DailyMailUK 2020-01-10T12:30:04.000Z Daily Mail U.K. 2
## 12059 TheSun 2020-01-10T12:30:00.000Z The Sun 9
## 12060 guardian 2020-01-10T12:30:00.000Z The Guardian 10
## 12061 DailyMirror 2020-01-10T12:29:59.000Z The Mirror 3
## 12062 EveningStandard 2020-01-10T12:27:03.000Z Evening Standard 2
## 12063 DailyMirror 2020-01-10T12:26:24.000Z The Mirror 8
## 12064 Telegraph 2020-01-10T12:26:18.000Z The Telegraph 10
## 12065 guardian 2020-01-10T12:25:09.000Z The Guardian 12
## 12066 TheSun 2020-01-10T12:24:22.000Z The Sun 18
## 12067 DailyMirror 2020-01-10T12:22:51.000Z The Mirror 4
## 12068 MetroUK 2020-01-10T12:21:25.000Z Metro 1
## 12069 DailyMailUK 2020-01-10T12:21:01.000Z Daily Mail U.K. 6
## 12070 DailyMirror 2020-01-10T12:20:45.000Z The Mirror 10
## 12071 TheSun 2020-01-10T12:20:00.000Z The Sun 3
## 12072 DailyMirror 2020-01-10T12:18:58.000Z The Mirror 1
## 12073 EveningStandard 2020-01-10T12:18:52.000Z Evening Standard 1
## 12074 Telegraph 2020-01-10T12:18:19.000Z The Telegraph 12
## 12075 Telegraph 2020-01-10T12:18:03.000Z The Telegraph 2
## 12076 Telegraph 2020-01-10T12:17:32.000Z The Telegraph 19
## 12077 thetimes 2020-01-10T12:16:58.000Z The Times 3
## 12078 Telegraph 2020-01-10T12:15:58.000Z The Telegraph 1
## 12079 guardian 2020-01-10T12:15:54.000Z The Guardian 3
## 12080 DailyMirror 2020-01-10T12:14:00.000Z The Mirror 2
## 12081 TheSun 2020-01-10T12:12:57.000Z The Sun 0
## 12082 DailyMirror 2020-01-10T12:12:23.000Z The Mirror 1
## 12083 DailyMirror 2020-01-10T12:12:15.000Z The Mirror 134
## 12084 EveningStandard 2020-01-10T12:10:58.000Z Evening Standard 0
## 12085 DailyMailUK 2020-01-10T12:10:04.000Z Daily Mail U.K. 2
## 12086 TheSun 2020-01-10T12:10:00.000Z The Sun 19
## 12087 guardian 2020-01-10T12:05:59.000Z The Guardian 3
## 12088 guardian 2020-01-10T12:05:58.000Z The Guardian 11
## 12089 TheSun 2020-01-10T12:03:03.000Z The Sun 0
## 12090 DailyMailUK 2020-01-10T12:01:08.000Z Daily Mail U.K. 17
## 12091 Telegraph 2020-01-10T12:01:02.000Z The Telegraph 19
## 12092 DailyMirror 2020-01-10T12:00:53.000Z The Mirror 1
## 12093 MetroUK 2020-01-10T12:00:09.000Z Metro 3
## 12094 TheSun 2020-01-10T12:00:01.000Z The Sun 44
## 12095 guardian 2020-01-10T12:00:00.000Z The Guardian 3
## 12096 EveningStandard 2020-01-10T12:00:00.000Z Evening Standard 5
## 12097 EveningStandard 2020-01-10T11:59:56.000Z Evening Standard 1
## 12098 guardian 2020-01-10T11:59:56.000Z The Guardian 2
## 12099 DailyMirror 2020-01-10T11:57:05.000Z The Mirror 3
## 12100 DailyMailUK 2020-01-10T11:53:38.000Z Daily Mail U.K. 11
## 12101 TheSun 2020-01-10T11:53:02.000Z The Sun 4
## 12102 guardian 2020-01-10T11:52:02.000Z The Guardian 8
## 12103 DailyMirror 2020-01-10T11:50:11.000Z The Mirror 3
## 12104 TheSun 2020-01-10T11:50:00.000Z The Sun 16
## 12105 EveningStandard 2020-01-10T11:48:55.000Z Evening Standard 0
## 12106 DailyMirror 2020-01-10T11:47:25.000Z The Mirror 2
## 12107 DailyMailUK 2020-01-10T11:47:03.000Z Daily Mail U.K. 22
## 12108 DailyMirror 2020-01-10T11:46:39.000Z The Mirror 1
## 12109 Telegraph 2020-01-10T11:45:47.000Z The Telegraph 5
## 12110 guardian 2020-01-10T11:44:44.000Z The Guardian 1
## 12111 DailyMirror 2020-01-10T11:44:28.000Z The Mirror 2
## 12112 DailyMirror 2020-01-10T11:44:12.000Z The Mirror 6
## 12113 TheSun 2020-01-10T11:42:45.000Z The Sun 0
## 12114 thetimes 2020-01-10T11:41:49.000Z The Times 0
## 12115 DailyMailUK 2020-01-10T11:41:05.000Z Daily Mail U.K. 10
## 12116 TheSun 2020-01-10T11:40:00.000Z The Sun 8
## 12117 DailyMirror 2020-01-10T11:37:33.000Z The Mirror 6
## 12118 EveningStandard 2020-01-10T11:36:51.000Z Evening Standard 2
## 12119 guardian 2020-01-10T11:34:47.000Z The Guardian 18
## 12120 guardian 2020-01-10T11:34:46.000Z The Guardian 35
## 12121 guardian 2020-01-10T11:34:45.000Z The Guardian 10
## 12122 guardian 2020-01-10T11:34:44.000Z The Guardian 0
## 12123 DailyMirror 2020-01-10T11:33:00.000Z The Mirror 0
## 12124 TheSun 2020-01-10T11:32:54.000Z The Sun 0
## 12125 DailyMailUK 2020-01-10T11:31:04.000Z Daily Mail U.K. 1
## 12126 Telegraph 2020-01-10T11:31:02.000Z The Telegraph 6
## 12127 MetroUK 2020-01-10T11:30:09.000Z Metro 4
## 12128 TheSun 2020-01-10T11:30:00.000Z The Sun 11
## 12129 guardian 2020-01-10T11:29:58.000Z The Guardian 73
## 12130 EveningStandard 2020-01-10T11:27:20.000Z Evening Standard 12
## 12131 EveningStandard 2020-01-10T11:27:11.000Z Evening Standard 9
## 12132 DailyMirror 2020-01-10T11:26:25.000Z The Mirror 2
## 12133 TheSun 2020-01-10T11:25:10.000Z The Sun 2
## 12134 EveningStandard 2020-01-10T11:25:10.000Z Evening Standard 0
## 12135 DailyMailUK 2020-01-10T11:24:23.000Z Daily Mail U.K. 18
## 12136 DailyMailUK 2020-01-10T11:21:28.000Z Daily Mail U.K. 14
## 12137 guardian 2020-01-10T11:20:29.000Z The Guardian 6
## 12138 DailyMirror 2020-01-10T11:20:03.000Z The Mirror 2
## 12139 TheSun 2020-01-10T11:20:00.000Z The Sun 106
## 12140 MetroUK 2020-01-10T11:18:53.000Z Metro 3
## 12141 DailyMailUK 2020-01-10T11:18:35.000Z Daily Mail U.K. 16
## 12142 DailyMailUK 2020-01-10T11:17:48.000Z Daily Mail U.K. 11
## 12143 Telegraph 2020-01-10T11:16:07.000Z The Telegraph 20
## 12144 DailyMirror 2020-01-10T11:16:00.000Z The Mirror 1
## 12145 DailyMirror 2020-01-10T11:15:11.000Z The Mirror 0
## 12146 DailyMirror 2020-01-10T11:15:00.000Z The Mirror 0
## 12147 DailyMailUK 2020-01-10T11:14:00.000Z Daily Mail U.K. 10
## 12148 DailyMirror 2020-01-10T11:13:26.000Z The Mirror 3
## 12149 EveningStandard 2020-01-10T11:12:21.000Z Evening Standard 9
## 12150 DailyMirror 2020-01-10T11:12:19.000Z The Mirror 5
## 12151 TheSun 2020-01-10T11:12:08.000Z The Sun 5
## 12152 DailyMailUK 2020-01-10T11:11:03.000Z Daily Mail U.K. 0
## 12153 guardian 2020-01-10T11:10:12.000Z The Guardian 1
## 12154 EveningStandard 2020-01-10T11:10:11.000Z Evening Standard 1
## 12155 thetimes 2020-01-10T11:10:02.000Z The Times 8
## 12156 TheSun 2020-01-10T11:10:00.000Z The Sun 6
## 12157 DailyMirror 2020-01-10T11:09:45.000Z The Mirror 3
## 12158 DailyMirror 2020-01-10T11:08:00.000Z The Mirror 1
## 12159 DailyMirror 2020-01-10T11:07:12.000Z The Mirror 4
## 12160 DailyMirror 2020-01-10T11:05:52.000Z The Mirror 2
## 12161 DailyMirror 2020-01-10T11:05:39.000Z The Mirror 3
## 12162 Telegraph 2020-01-10T11:05:00.000Z The Telegraph 0
## 12163 TheSun 2020-01-10T11:02:18.000Z The Sun 0
## 12164 Telegraph 2020-01-10T11:00:30.000Z The Telegraph 4
## 12165 MetroUK 2020-01-10T11:00:08.000Z Metro 14
## 12166 guardian 2020-01-10T11:00:00.000Z The Guardian 1
## 12167 TheSun 2020-01-10T11:00:00.000Z The Sun 53
## 12168 EveningStandard 2020-01-10T10:58:57.000Z Evening Standard 4
## 12169 DailyMailUK 2020-01-10T10:56:10.000Z Daily Mail U.K. 5
## 12170 guardian 2020-01-10T10:54:26.000Z The Guardian 0
## 12171 TheSun 2020-01-10T10:52:28.000Z The Sun 2
## 12172 thetimes 2020-01-10T10:51:34.000Z The Times 9
## 12173 DailyMailUK 2020-01-10T10:51:06.000Z Daily Mail U.K. 11
## 12174 Telegraph 2020-01-10T10:50:42.000Z The Telegraph 3
## 12175 Telegraph 2020-01-10T10:50:39.000Z The Telegraph 14
## 12176 TheSun 2020-01-10T10:50:00.000Z The Sun 12
## 12177 EveningStandard 2020-01-10T10:48:33.000Z Evening Standard 0
## 12178 DailyMirror 2020-01-10T10:47:19.000Z The Mirror 6
## 12179 Telegraph 2020-01-10T10:46:30.000Z The Telegraph 2
## 12180 DailyMirror 2020-01-10T10:45:00.000Z The Mirror 1
## 12181 DailyMailUK 2020-01-10T10:44:30.000Z Daily Mail U.K. 18
## 12182 DailyMirror 2020-01-10T10:44:00.000Z The Mirror 6
## 12183 DailyMirror 2020-01-10T10:43:30.000Z The Mirror 5
## 12184 Telegraph 2020-01-10T10:43:11.000Z The Telegraph 10
## 12185 guardian 2020-01-10T10:42:23.000Z The Guardian 4
## 12186 guardian 2020-01-10T10:42:22.000Z The Guardian 2
## 12187 TheSun 2020-01-10T10:42:17.000Z The Sun 5
## 12188 DailyMailUK 2020-01-10T10:40:07.000Z Daily Mail U.K. 5
## 12189 TheSun 2020-01-10T10:40:00.000Z The Sun 10
## 12190 DailyMailUK 2020-01-10T10:39:02.000Z Daily Mail U.K. 3
## 12191 guardian 2020-01-10T10:38:22.000Z The Guardian 3
## 12192 DailyMirror 2020-01-10T10:37:04.000Z The Mirror 3
## 12193 EveningStandard 2020-01-10T10:34:23.000Z Evening Standard 1
## 12194 DailyMirror 2020-01-10T10:34:03.000Z The Mirror 3
## 12195 TheSun 2020-01-10T10:32:25.000Z The Sun 0
## 12196 Telegraph 2020-01-10T10:31:37.000Z The Telegraph 12
## 12197 DailyMailUK 2020-01-10T10:31:04.000Z Daily Mail U.K. 3
## 12198 DailyMirror 2020-01-10T10:31:00.000Z The Mirror 5
## 12199 Telegraph 2020-01-10T10:30:32.000Z The Telegraph 3
## 12200 MetroUK 2020-01-10T10:30:10.000Z Metro 4
## 12201 Telegraph 2020-01-10T10:30:00.000Z The Telegraph 13
## 12202 TheSun 2020-01-10T10:30:00.000Z The Sun 24
## 12203 Telegraph 2020-01-10T10:29:30.000Z The Telegraph 8
## 12204 guardian 2020-01-10T10:26:54.000Z The Guardian 11
## 12205 guardian 2020-01-10T10:24:14.000Z The Guardian 41
## 12206 DailyMirror 2020-01-10T10:24:02.000Z The Mirror 10
## 12207 DailyMirror 2020-01-10T10:23:29.000Z The Mirror 3
## 12208 thetimes 2020-01-10T10:23:00.000Z The Times 4
## 12209 TheSun 2020-01-10T10:22:33.000Z The Sun 0
## 12210 DailyMirror 2020-01-10T10:21:56.000Z The Mirror 6
## 12211 DailyMailUK 2020-01-10T10:21:04.000Z Daily Mail U.K. 12
## 12212 DailyMirror 2020-01-10T10:21:00.000Z The Mirror 1
## 12213 EveningStandard 2020-01-10T10:20:36.000Z Evening Standard 3
## 12214 DailyMirror 2020-01-10T10:20:14.000Z The Mirror 16
## 12215 TheSun 2020-01-10T10:20:00.000Z The Sun 7
## 12216 DailyMirror 2020-01-10T10:19:28.000Z The Mirror 16
## 12217 thetimes 2020-01-10T10:19:15.000Z The Times 16
## 12218 guardian 2020-01-10T10:16:07.000Z The Guardian 22
## 12219 guardian 2020-01-10T10:16:06.000Z The Guardian 18
## 12220 DailyMirror 2020-01-10T10:15:08.000Z The Mirror 9
## 12221 guardian 2020-01-10T10:14:37.000Z The Guardian 34
## 12222 DailyMirror 2020-01-10T10:14:21.000Z The Mirror 14
## 12223 DailyMirror 2020-01-10T10:13:12.000Z The Mirror 6
## 12224 TheSun 2020-01-10T10:12:43.000Z The Sun 1
## 12225 guardian 2020-01-10T10:11:46.000Z The Guardian 33
## 12226 DailyMailUK 2020-01-10T10:10:07.000Z Daily Mail U.K. 2
## 12227 TheSun 2020-01-10T10:10:00.000Z The Sun 17
## 12228 Telegraph 2020-01-10T10:08:21.000Z The Telegraph 15
## 12229 DailyMirror 2020-01-10T10:08:00.000Z The Mirror 1
## 12230 DailyMirror 2020-01-10T10:07:00.000Z The Mirror 1
## 12231 Telegraph 2020-01-10T10:06:38.000Z The Telegraph 7
## 12232 DailyMirror 2020-01-10T10:06:12.000Z The Mirror 2
## 12233 thetimes 2020-01-10T10:05:52.000Z The Times 8
## 12234 EveningStandard 2020-01-10T10:05:48.000Z Evening Standard 1
## 12235 TheSun 2020-01-10T10:02:56.000Z The Sun 6
## 12236 DailyMirror 2020-01-10T10:01:24.000Z The Mirror 2
## 12237 DailyMailUK 2020-01-10T10:01:18.000Z Daily Mail U.K. 19
## 12238 DailyMirror 2020-01-10T10:00:38.000Z The Mirror 10
## 12239 Telegraph 2020-01-10T10:00:12.000Z The Telegraph 29
## 12240 EveningStandard 2020-01-10T10:00:00.000Z Evening Standard 10
## 12241 guardian 2020-01-10T10:00:00.000Z The Guardian 1
## 12242 TheSun 2020-01-10T10:00:00.000Z The Sun 7
## 12243 MetroUK 2020-01-10T09:59:02.000Z Metro 2
## 12244 DailyMirror 2020-01-10T09:56:26.000Z The Mirror 6
## 12245 EveningStandard 2020-01-10T09:56:17.000Z Evening Standard 27
## 12246 DailyMailUK 2020-01-10T09:54:46.000Z Daily Mail U.K. 7
## 12247 TheSun 2020-01-10T09:53:05.000Z The Sun 3
## 12248 DailyMirror 2020-01-10T09:52:43.000Z The Mirror 3
## 12249 TheSun 2020-01-10T09:52:14.000Z The Sun 19
## 12250 DailyMirror 2020-01-10T09:52:14.000Z The Mirror 2
## 12251 DailyMailUK 2020-01-10T09:51:23.000Z Daily Mail U.K. 7
## 12252 DailyMirror 2020-01-10T09:50:31.000Z The Mirror 5
## 12253 DailyMailUK 2020-01-10T09:50:05.000Z Daily Mail U.K. 26
## 12254 EveningStandard 2020-01-10T09:50:02.000Z Evening Standard 2
## 12255 TheSun 2020-01-10T09:50:00.000Z The Sun 23
## 12256 guardian 2020-01-10T09:49:17.000Z The Guardian 2
## 12257 guardian 2020-01-10T09:49:16.000Z The Guardian 5
## 12258 guardian 2020-01-10T09:49:15.000Z The Guardian 3
## 12259 guardian 2020-01-10T09:49:14.000Z The Guardian 2
## 12260 guardian 2020-01-10T09:49:12.000Z The Guardian 3
## 12261 DailyMirror 2020-01-10T09:47:32.000Z The Mirror 1
## 12262 DailyMailUK 2020-01-10T09:43:22.000Z Daily Mail U.K. 10
## 12263 TheSun 2020-01-10T09:42:11.000Z The Sun 4
## 12264 MetroUK 2020-01-10T09:40:53.000Z Metro 5
## 12265 MetroUK 2020-01-10T09:40:29.000Z Metro 3
## 12266 DailyMailUK 2020-01-10T09:40:07.000Z Daily Mail U.K. 16
## 12267 TheSun 2020-01-10T09:40:00.000Z The Sun 0
## 12268 thetimes 2020-01-10T09:39:29.000Z The Times 8
## 12269 DailyMirror 2020-01-10T09:37:47.000Z The Mirror 6
## 12270 guardian 2020-01-10T09:37:33.000Z The Guardian 24
## 12271 DailyMirror 2020-01-10T09:35:58.000Z The Mirror 2
## 12272 guardian 2020-01-10T09:35:23.000Z The Guardian 5
## 12273 DailyMirror 2020-01-10T09:34:46.000Z The Mirror 7
## 12274 MetroUK 2020-01-10T09:34:11.000Z Metro 1
## 12275 TheSun 2020-01-10T09:32:22.000Z The Sun 0
## 12276 EveningStandard 2020-01-10T09:32:21.000Z Evening Standard 0
## 12277 DailyMirror 2020-01-10T09:31:32.000Z The Mirror 4
## 12278 DailyMailUK 2020-01-10T09:31:01.000Z Daily Mail U.K. 5
## 12279 TheSun 2020-01-10T09:30:00.000Z The Sun 2
## 12280 DailyMailUK 2020-01-10T09:29:11.000Z Daily Mail U.K. 10
## 12281 DailyMirror 2020-01-10T09:25:53.000Z The Mirror 5
## 12282 TheSun 2020-01-10T09:25:14.000Z The Sun 2
## 12283 guardian 2020-01-10T09:22:53.000Z The Guardian 1
## 12284 TheSun 2020-01-10T09:22:19.000Z The Sun 6
## 12285 thetimes 2020-01-10T09:20:23.000Z The Times 2
## 12286 DailyMailUK 2020-01-10T09:20:03.000Z Daily Mail U.K. 1
## 12287 TheSun 2020-01-10T09:20:00.000Z The Sun 22
## 12288 DailyMirror 2020-01-10T09:19:33.000Z The Mirror 4
## 12289 TheSun 2020-01-10T09:16:49.000Z The Sun 5
## 12290 DailyMirror 2020-01-10T09:13:56.000Z The Mirror 6
## 12291 DailyMirror 2020-01-10T09:13:15.000Z The Mirror 9
## 12292 TheSun 2020-01-10T09:12:24.000Z The Sun 14
## 12293 EveningStandard 2020-01-10T09:12:21.000Z Evening Standard 2
## 12294 guardian 2020-01-10T09:10:11.000Z The Guardian 1
## 12295 TheSun 2020-01-10T09:10:00.000Z The Sun 18
## 12296 DailyMailUK 2020-01-10T09:09:24.000Z Daily Mail U.K. 11
## 12297 DailyMirror 2020-01-10T09:06:00.000Z The Mirror 5
## 12298 Telegraph 2020-01-10T09:05:20.000Z The Telegraph 2
## 12299 TheSun 2020-01-10T09:03:18.000Z The Sun 0
## 12300 DailyMailUK 2020-01-10T09:01:56.000Z Daily Mail U.K. 11
## 12301 guardian 2020-01-10T09:00:00.000Z The Guardian 1
## 12302 TheSun 2020-01-10T09:00:00.000Z The Sun 11
## 12303 DailyMailUK 2020-01-10T08:59:05.000Z Daily Mail U.K. 2
## 12304 guardian 2020-01-10T08:57:54.000Z The Guardian 55
## 12305 guardian 2020-01-10T08:57:52.000Z The Guardian 3
## 12306 guardian 2020-01-10T08:57:51.000Z The Guardian 20
## 12307 DailyMailUK 2020-01-10T08:56:59.000Z Daily Mail U.K. 9
## 12308 DailyMailUK 2020-01-10T08:51:03.000Z Daily Mail U.K. 2
## 12309 thetimes 2020-01-10T08:51:01.000Z The Times 12
## 12310 EveningStandard 2020-01-10T08:50:54.000Z Evening Standard 2
## 12311 TheSun 2020-01-10T08:50:00.000Z The Sun 3
## 12312 DailyMirror 2020-01-10T08:50:00.000Z The Mirror 12
## 12313 DailyMirror 2020-01-10T08:48:53.000Z The Mirror 0
## 12314 TheSun 2020-01-10T08:48:51.000Z The Sun 4
## 12315 DailyMirror 2020-01-10T08:46:00.000Z The Mirror 1
## 12316 MetroUK 2020-01-10T08:44:53.000Z Metro 4
## 12317 TheSun 2020-01-10T08:43:03.000Z The Sun 1
## 12318 DailyMailUK 2020-01-10T08:40:04.000Z Daily Mail U.K. 31
## 12319 TheSun 2020-01-10T08:40:00.000Z The Sun 19
## 12320 DailyMirror 2020-01-10T08:38:46.000Z The Mirror 4
## 12321 DailyMirror 2020-01-10T08:37:00.000Z The Mirror 3
## 12322 DailyMirror 2020-01-10T08:37:00.000Z The Mirror 0
## 12323 DailyMirror 2020-01-10T08:35:52.000Z The Mirror 3
## 12324 thetimes 2020-01-10T08:35:21.000Z The Times 4
## 12325 Telegraph 2020-01-10T08:35:13.000Z The Telegraph 33
## 12326 DailyMailUK 2020-01-10T08:35:06.000Z Daily Mail U.K. 6
## 12327 DailyMirror 2020-01-10T08:34:45.000Z The Mirror 10
## 12328 DailyMailUK 2020-01-10T08:33:30.000Z Daily Mail U.K. 11
## 12329 TheSun 2020-01-10T08:32:14.000Z The Sun 2
## 12330 TheSun 2020-01-10T08:31:35.000Z The Sun 4
## 12331 DailyMailUK 2020-01-10T08:31:23.000Z Daily Mail U.K. 15
## 12332 DailyMirror 2020-01-10T08:31:00.000Z The Mirror 0
## 12333 DailyMailUK 2020-01-10T08:30:04.000Z Daily Mail U.K. 7
## 12334 MetroUK 2020-01-10T08:30:03.000Z Metro 3
## 12335 TheSun 2020-01-10T08:30:00.000Z The Sun 2
## 12336 EveningStandard 2020-01-10T08:29:55.000Z Evening Standard 1
## 12337 guardian 2020-01-10T08:29:43.000Z The Guardian 29
## 12338 guardian 2020-01-10T08:29:41.000Z The Guardian 5
## 12339 EveningStandard 2020-01-10T08:28:18.000Z Evening Standard 0
## 12340 guardian 2020-01-10T08:22:23.000Z The Guardian 41
## 12341 DailyMailUK 2020-01-10T08:20:06.000Z Daily Mail U.K. 6
## 12342 TheSun 2020-01-10T08:20:00.000Z The Sun 8
## 12343 Telegraph 2020-01-10T08:18:13.000Z The Telegraph 2
## 12344 DailyMirror 2020-01-10T08:16:42.000Z The Mirror 3
## 12345 DailyMailUK 2020-01-10T08:16:02.000Z Daily Mail U.K. 100
## 12346 DailyMirror 2020-01-10T08:15:00.000Z The Mirror 0
## 12347 TheSun 2020-01-10T08:12:34.000Z The Sun 4
## 12348 DailyMirror 2020-01-10T08:12:03.000Z The Mirror 4
## 12349 Telegraph 2020-01-10T08:11:03.000Z The Telegraph 3
## 12350 DailyMirror 2020-01-10T08:10:54.000Z The Mirror 4
## 12351 guardian 2020-01-10T08:10:37.000Z The Guardian 158
## 12352 DailyMirror 2020-01-10T08:10:20.000Z The Mirror 2
## 12353 TheSun 2020-01-10T08:10:00.000Z The Sun 6
## 12354 DailyMailUK 2020-01-10T08:07:03.000Z Daily Mail U.K. 9
## 12355 thetimes 2020-01-10T08:06:18.000Z The Times 11
## 12356 DailyMirror 2020-01-10T08:06:02.000Z The Mirror 1
## 12357 Telegraph 2020-01-10T08:05:25.000Z The Telegraph 2
## 12358 TheSun 2020-01-10T22:32:22.000Z The Sun 5
## 12359 Telegraph 2020-01-10T22:30:30.000Z The Telegraph 2
## 12360 MetroUK 2020-01-10T22:30:10.000Z Metro 1
## 12361 DailyMirror 2020-01-10T22:30:01.000Z The Mirror 6
## 12362 TheSun 2020-01-10T22:30:00.000Z The Sun 10
## 12363 DailyMirror 2020-01-10T22:28:00.000Z The Mirror 2
## 12364 TheSun 2020-01-10T22:27:34.000Z The Sun 17
## 12365 guardian 2020-01-10T22:27:29.000Z The Guardian 290
## 12366 TheSun 2020-01-10T22:22:32.000Z The Sun 10
## 12367 DailyMirror 2020-01-10T22:22:00.000Z The Mirror 3
## 12368 EveningStandard 2020-01-10T22:20:34.000Z Evening Standard 0
## 12369 DailyMailUK 2020-01-10T22:20:09.000Z Daily Mail U.K. 79
## 12370 TheSun 2020-01-10T22:20:00.000Z The Sun 7
## 12371 thetimes 2020-01-10T22:18:38.000Z The Times 2
## 12372 DailyMirror 2020-01-10T22:17:00.000Z The Mirror 0
## 12373 Telegraph 2020-01-10T22:15:52.000Z The Telegraph 1
## 12374 guardian 2020-01-10T22:14:44.000Z The Guardian 2
## 12375 guardian 2020-01-10T22:14:43.000Z The Guardian 3
## 12376 guardian 2020-01-10T22:14:41.000Z The Guardian 16
## 12377 guardian 2020-01-10T22:14:40.000Z The Guardian 9
## 12378 DailyMirror 2020-01-10T22:14:20.000Z The Mirror 8
## 12379 DailyMirror 2020-01-10T22:13:00.000Z The Mirror 1
## 12380 DailyMirror 2020-01-10T22:13:00.000Z The Mirror 1
## 12381 guardian 2020-01-10T22:10:45.000Z The Guardian 13
## 12382 DailyMailUK 2020-01-10T22:10:37.000Z Daily Mail U.K. 27
## 12383 TheSun 2020-01-10T22:10:00.000Z The Sun 18
## 12384 DailyMailUK 2020-01-10T22:09:57.000Z Daily Mail U.K. 108
## 12385 TheSun 2020-01-10T22:02:58.000Z The Sun 6
## 12386 DailyMirror 2020-01-10T22:02:43.000Z The Mirror 0
## 12387 DailyMirror 2020-01-10T22:02:29.000Z The Mirror 6
## 12388 guardian 2020-01-10T22:02:09.000Z The Guardian 103
## 12389 DailyMirror 2020-01-10T22:02:00.000Z The Mirror 2
## 12390 DailyMirror 2020-01-10T22:02:00.000Z The Mirror 1
## 12391 DailyMirror 2020-01-10T22:02:00.000Z The Mirror 1
## 12392 DailyMirror 2020-01-10T22:01:00.000Z The Mirror 0
## 12393 EveningStandard 2020-01-10T22:00:31.000Z Evening Standard 0
## 12394 MetroUK 2020-01-10T22:00:22.000Z Metro 5
## 12395 DailyMailUK 2020-01-10T22:00:05.000Z Daily Mail U.K. 2
## 12396 TheSun 2020-01-10T22:00:00.000Z The Sun 8
## 12397 guardian 2020-01-10T22:00:00.000Z The Guardian 5
## 12398 guardian 2020-01-10T21:59:31.000Z The Guardian 7
## 12399 DailyMirror 2020-01-10T21:56:00.000Z The Mirror 15
## 12400 Telegraph 2020-01-10T21:55:37.000Z The Telegraph 11
## 12401 DailyMirror 2020-01-10T21:52:43.000Z The Mirror 25
## 12402 TheSun 2020-01-10T21:52:39.000Z The Sun 5
## 12403 DailyMailUK 2020-01-10T21:51:49.000Z Daily Mail U.K. 54
## 12404 thetimes 2020-01-10T21:51:45.000Z The Times 11
## 12405 DailyMirror 2020-01-10T21:50:45.000Z The Mirror 3
## 12406 guardian 2020-01-10T21:50:44.000Z The Guardian 28
## 12407 TheSun 2020-01-10T21:50:00.000Z The Sun 2
## 12408 DailyMirror 2020-01-10T21:48:00.000Z The Mirror 2
## 12409 DailyMirror 2020-01-10T21:48:00.000Z The Mirror 0
## 12410 DailyMirror 2020-01-10T21:47:04.000Z The Mirror 7
## 12411 DailyMirror 2020-01-10T21:46:00.000Z The Mirror 0
## 12412 guardian 2020-01-10T21:45:29.000Z The Guardian 10
## 12413 DailyMirror 2020-01-10T21:45:00.000Z The Mirror 1
## 12414 DailyMirror 2020-01-10T21:44:00.000Z The Mirror 5
## 12415 TheSun 2020-01-10T21:42:48.000Z The Sun 8
## 12416 DailyMirror 2020-01-10T21:42:35.000Z The Mirror 11
## 12417 guardian 2020-01-10T21:41:49.000Z The Guardian 30
## 12418 EveningStandard 2020-01-10T21:40:49.000Z Evening Standard 1
## 12419 DailyMirror 2020-01-10T21:40:39.000Z The Mirror 8
## 12420 DailyMailUK 2020-01-10T21:40:09.000Z Daily Mail U.K. 25
## 12421 TheSun 2020-01-10T21:40:00.000Z The Sun 24
## 12422 Telegraph 2020-01-10T21:39:36.000Z The Telegraph 37
## 12423 DailyMirror 2020-01-10T21:39:00.000Z The Mirror 2
## 12424 DailyMirror 2020-01-10T21:39:00.000Z The Mirror 3
## 12425 DailyMirror 2020-01-10T21:37:32.000Z The Mirror 1
## 12426 DailyMirror 2020-01-10T21:36:05.000Z The Mirror 6
## 12427 TheSun 2020-01-10T21:32:59.000Z The Sun 3
## 12428 TheSun 2020-01-10T21:32:58.000Z The Sun 6
## 12429 DailyMirror 2020-01-10T21:32:00.000Z The Mirror 3
## 12430 guardian 2020-01-10T21:32:00.000Z The Guardian 19
## 12431 DailyMirror 2020-01-10T21:30:57.000Z The Mirror 11
## 12432 MetroUK 2020-01-10T21:30:15.000Z Metro 2
## 12433 TheSun 2020-01-10T21:30:00.000Z The Sun 2
## 12434 DailyMirror 2020-01-10T21:30:00.000Z The Mirror 2
## 12435 DailyMailUK 2020-01-10T21:29:07.000Z Daily Mail U.K. 23
## 12436 DailyMirror 2020-01-10T21:28:45.000Z The Mirror 5
## 12437 DailyMirror 2020-01-10T21:28:00.000Z The Mirror 2
## 12438 thetimes 2020-01-10T21:26:02.000Z The Times 11
## 12439 Telegraph 2020-01-10T21:24:05.000Z The Telegraph 9
## 12440 TheSun 2020-01-10T21:23:04.000Z The Sun 0
## 12441 EveningStandard 2020-01-10T21:21:05.000Z Evening Standard 0
## 12442 DailyMailUK 2020-01-10T21:21:05.000Z Daily Mail U.K. 19
## 12443 EveningStandard 2020-01-10T21:20:09.000Z Evening Standard 8
## 12444 guardian 2020-01-10T21:20:09.000Z The Guardian 24
## 12445 EveningStandard 2020-01-10T21:20:09.000Z Evening Standard 2
## 12446 TheSun 2020-01-10T21:20:00.000Z The Sun 12
## 12447 DailyMirror 2020-01-10T21:17:00.000Z The Mirror 1
## 12448 DailyMirror 2020-01-10T21:15:00.000Z The Mirror 0
## 12449 DailyMirror 2020-01-10T21:13:00.000Z The Mirror 0
## 12450 DailyMirror 2020-01-10T21:13:00.000Z The Mirror 1
## 12451 TheSun 2020-01-10T21:12:15.000Z The Sun 3
## 12452 TheSun 2020-01-10T21:10:00.000Z The Sun 11
## 12453 guardian 2020-01-10T21:08:27.000Z The Guardian 8
## 12454 Telegraph 2020-01-10T21:08:22.000Z The Telegraph 1
## 12455 DailyMirror 2020-01-10T21:06:00.000Z The Mirror 0
## 12456 DailyMirror 2020-01-10T21:05:00.000Z The Mirror 1
## 12457 DailyMirror 2020-01-10T21:04:00.000Z The Mirror 1
## 12458 DailyMailUK 2020-01-10T21:03:13.000Z Daily Mail U.K. 40
## 12459 TheSun 2020-01-10T21:02:36.000Z The Sun 2
## 12460 DailyMirror 2020-01-10T21:02:00.000Z The Mirror 0
## 12461 DailyMirror 2020-01-10T21:02:00.000Z The Mirror 1
## 12462 guardian 2020-01-10T21:01:38.000Z The Guardian 7
## 12463 EveningStandard 2020-01-10T21:00:35.000Z Evening Standard 0
## 12464 MetroUK 2020-01-10T21:00:18.000Z Metro 2
## 12465 DailyMailUK 2020-01-10T21:00:06.000Z Daily Mail U.K. 5
## 12466 TheSun 2020-01-10T21:00:01.000Z The Sun 7
## 12467 DailyMirror 2020-01-10T21:00:00.000Z The Mirror 12
## 12468 guardian 2020-01-10T20:53:24.000Z The Guardian 19
## 12469 guardian 2020-01-10T20:53:22.000Z The Guardian 21
## 12470 TheSun 2020-01-10T20:52:49.000Z The Sun 1
## 12471 Telegraph 2020-01-10T20:52:26.000Z The Telegraph 14
## 12472 TheSun 2020-01-10T20:52:24.000Z The Sun 1
## 12473 TheSun 2020-01-10T20:50:00.000Z The Sun 7
## 12474 DailyMirror 2020-01-10T20:48:00.000Z The Mirror 2
## 12475 DailyMirror 2020-01-10T20:46:00.000Z The Mirror 3
## 12476 guardian 2020-01-10T20:45:07.000Z The Guardian 15
## 12477 TheSun 2020-01-10T20:42:19.000Z The Sun 5
## 12478 DailyMirror 2020-01-10T20:41:56.000Z The Mirror 3
## 12479 guardian 2020-01-10T20:40:24.000Z The Guardian 14
## 12480 EveningStandard 2020-01-10T20:40:23.000Z Evening Standard 0
## 12481 DailyMailUK 2020-01-10T20:40:08.000Z Daily Mail U.K. 2
## 12482 TheSun 2020-01-10T20:40:00.000Z The Sun 50
## 12483 thetimes 2020-01-10T20:39:25.000Z The Times 4
## 12484 DailyMirror 2020-01-10T20:39:00.000Z The Mirror 2
## 12485 DailyMirror 2020-01-10T20:39:00.000Z The Mirror 1
## 12486 DailyMirror 2020-01-10T20:39:00.000Z The Mirror 0
## 12487 DailyMirror 2020-01-10T20:38:08.000Z The Mirror 3
## 12488 Telegraph 2020-01-10T20:36:28.000Z The Telegraph 2
## 12489 DailyMirror 2020-01-10T20:34:09.000Z The Mirror 1
## 12490 DailyMirror 2020-01-10T20:33:00.000Z The Mirror 2
## 12491 TheSun 2020-01-10T20:32:30.000Z The Sun 7
## 12492 DailyMirror 2020-01-10T20:31:00.000Z The Mirror 0
## 12493 MetroUK 2020-01-10T20:30:12.000Z Metro 1
## 12494 guardian 2020-01-10T20:30:00.000Z The Guardian 8
## 12495 TheSun 2020-01-10T20:30:00.000Z The Sun 4
## 12496 Telegraph 2020-01-10T20:28:26.000Z The Telegraph 8
## 12497 DailyMirror 2020-01-10T20:28:00.000Z The Mirror 4
## 12498 DailyMirror 2020-01-10T20:28:00.000Z The Mirror 1
## 12499 Telegraph 2020-01-10T20:26:51.000Z The Telegraph 2
## 12500 Telegraph 2020-01-10T20:26:43.000Z The Telegraph 6
## 12501 Telegraph 2020-01-10T20:26:39.000Z The Telegraph 26
## 12502 guardian 2020-01-10T20:26:28.000Z The Guardian 20
## 12503 Telegraph 2020-01-10T20:26:25.000Z The Telegraph 3
## 12504 guardian 2020-01-10T20:26:20.000Z The Guardian 55
## 12505 DailyMirror 2020-01-10T20:24:30.000Z The Mirror 3
## 12506 DailyMirror 2020-01-10T20:23:00.000Z The Mirror 1
## 12507 TheSun 2020-01-10T20:22:26.000Z The Sun 0
## 12508 guardian 2020-01-10T20:22:26.000Z The Guardian 4
## 12509 EveningStandard 2020-01-10T20:20:27.000Z Evening Standard 0
## 12510 TheSun 2020-01-10T20:20:00.000Z The Sun 7
## 12511 DailyMailUK 2020-01-10T20:19:08.000Z Daily Mail U.K. 1
## 12512 DailyMirror 2020-01-10T20:17:00.000Z The Mirror 0
## 12513 guardian 2020-01-10T20:15:20.000Z The Guardian 8
## 12514 DailyMirror 2020-01-10T20:14:00.000Z The Mirror 0
## 12515 guardian 2020-01-10T20:13:42.000Z The Guardian 7
## 12516 DailyMirror 2020-01-10T20:13:00.000Z The Mirror 3
## 12517 DailyMirror 2020-01-10T20:13:00.000Z The Mirror 0
## 12518 TheSun 2020-01-10T20:12:43.000Z The Sun 1
## 12519 Telegraph 2020-01-10T20:10:49.000Z The Telegraph 20
## 12520 TheSun 2020-01-10T20:10:00.000Z The Sun 21
## 12521 DailyMirror 2020-01-10T20:08:49.000Z The Mirror 5
## 12522 DailyMirror 2020-01-10T20:06:00.000Z The Mirror 1
## 12523 guardian 2020-01-10T20:05:43.000Z The Guardian 21
## 12524 DailyMirror 2020-01-10T20:04:00.000Z The Mirror 7
## 12525 TheSun 2020-01-10T20:02:37.000Z The Sun 24
## 12526 DailyMirror 2020-01-10T20:02:00.000Z The Mirror 0
## 12527 DailyMirror 2020-01-10T20:02:00.000Z The Mirror 0
## 12528 DailyMirror 2020-01-10T20:02:00.000Z The Mirror 0
## 12529 EveningStandard 2020-01-10T20:00:42.000Z Evening Standard 0
## 12530 MetroUK 2020-01-10T20:00:19.000Z Metro 1
## 12531 DailyMailUK 2020-01-10T20:00:04.000Z Daily Mail U.K. 2
## 12532 DailyMirror 2020-01-10T20:00:00.000Z The Mirror 2
## 12533 guardian 2020-01-10T20:00:00.000Z The Guardian 5
## 12534 TheSun 2020-01-10T20:00:00.000Z The Sun 24
## 12535 DailyMirror 2020-01-10T19:57:25.000Z The Mirror 2
## 12536 guardian 2020-01-10T19:56:20.000Z The Guardian 33
## 12537 DailyMirror 2020-01-10T19:53:22.000Z The Mirror 2
## 12538 DailyMirror 2020-01-10T19:53:00.000Z The Mirror 5
## 12539 TheSun 2020-01-10T19:52:46.000Z The Sun 0
## 12540 DailyMirror 2020-01-10T19:50:00.000Z The Mirror 2
## 12541 TheSun 2020-01-10T19:50:00.000Z The Sun 8
## 12542 guardian 2020-01-10T19:48:02.000Z The Guardian 12572
## 12543 DailyMirror 2020-01-10T19:48:00.000Z The Mirror 1
## 12544 DailyMirror 2020-01-10T19:48:00.000Z The Mirror 0
## 12545 DailyMirror 2020-01-10T19:47:09.000Z The Mirror 4
## 12546 DailyMirror 2020-01-10T19:45:00.000Z The Mirror 3
## 12547 guardian 2020-01-10T19:43:55.000Z The Guardian 3
## 12548 TheSun 2020-01-10T19:42:55.000Z The Sun 7
## 12549 DailyMailUK 2020-01-10T19:41:03.000Z Daily Mail U.K. 24
## 12550 EveningStandard 2020-01-10T19:40:56.000Z Evening Standard 1
## 12551 TheSun 2020-01-10T19:40:00.000Z The Sun 22
## 12552 DailyMirror 2020-01-10T19:39:00.000Z The Mirror 2
## 12553 DailyMirror 2020-01-10T19:38:00.000Z The Mirror 2
## 12554 Telegraph 2020-01-10T19:37:18.000Z The Telegraph 13
## 12555 guardian 2020-01-10T19:35:29.000Z The Guardian 52
## 12556 guardian 2020-01-10T19:35:08.000Z The Guardian 4
## 12557 DailyMirror 2020-01-10T19:35:00.000Z The Mirror 2
## 12558 TheSun 2020-01-10T19:32:11.000Z The Sun 5
## 12559 MetroUK 2020-01-10T19:30:12.000Z Metro 3
## 12560 TheSun 2020-01-10T19:30:00.000Z The Sun 5
## 12561 DailyMirror 2020-01-10T19:28:42.000Z The Mirror 2
## 12562 DailyMirror 2020-01-10T19:28:00.000Z The Mirror 2
## 12563 DailyMirror 2020-01-10T19:27:00.000Z The Mirror 0
## 12564 DailyMirror 2020-01-10T19:26:21.000Z The Mirror 6
## 12565 DailyMirror 2020-01-10T19:25:30.000Z The Mirror 2
## 12566 guardian 2020-01-10T19:24:34.000Z The Guardian 2
## 12567 TheSun 2020-01-10T19:22:49.000Z The Sun 6
## 12568 EveningStandard 2020-01-10T19:20:43.000Z Evening Standard 0
## 12569 DailyMailUK 2020-01-10T19:20:07.000Z Daily Mail U.K. 5
## 12570 TheSun 2020-01-10T19:20:00.000Z The Sun 9
## 12571 DailyMirror 2020-01-10T19:19:09.000Z The Mirror 2
## 12572 guardian 2020-01-10T19:18:43.000Z The Guardian 37
## 12573 thetimes 2020-01-10T19:13:33.000Z The Times 19
## 12574 TheSun 2020-01-10T19:12:30.000Z The Sun 25
## 12575 DailyMirror 2020-01-10T19:12:00.000Z The Mirror 2
## 12576 TheSun 2020-01-10T19:10:00.000Z The Sun 11
## 12577 DailyMirror 2020-01-10T19:08:41.000Z The Mirror 2
## 12578 DailyMirror 2020-01-10T19:08:16.000Z The Mirror 3
## 12579 guardian 2020-01-10T19:07:33.000Z The Guardian 10
## 12580 DailyMirror 2020-01-10T19:07:32.000Z The Mirror 1
## 12581 DailyMirror 2020-01-10T19:05:00.000Z The Mirror 1
## 12582 DailyMirror 2020-01-10T19:03:51.000Z The Mirror 5
## 12583 DailyMirror 2020-01-10T19:03:00.000Z The Mirror 2
## 12584 TheSun 2020-01-10T19:02:14.000Z The Sun 2
## 12585 DailyMirror 2020-01-10T19:02:00.000Z The Mirror 1
## 12586 DailyMirror 2020-01-10T19:02:00.000Z The Mirror 1
## 12587 EveningStandard 2020-01-10T19:01:06.000Z Evening Standard 1
## 12588 DailyMirror 2020-01-10T19:01:00.000Z The Mirror 0
## 12589 MetroUK 2020-01-10T19:00:18.000Z Metro 2
## 12590 DailyMailUK 2020-01-10T19:00:04.000Z Daily Mail U.K. 3
## 12591 DailyMirror 2020-01-10T19:00:00.000Z The Mirror 2
## 12592 guardian 2020-01-10T19:00:00.000Z The Guardian 4
## 12593 TheSun 2020-01-10T19:00:00.000Z The Sun 4
## 12594 Telegraph 2020-01-10T18:58:51.000Z The Telegraph 22
## 12595 guardian 2020-01-10T18:56:27.000Z The Guardian 2
## 12596 guardian 2020-01-10T18:56:26.000Z The Guardian 10
## 12597 guardian 2020-01-10T18:56:24.000Z The Guardian 11
## 12598 TheSun 2020-01-10T18:52:53.000Z The Sun 2
## 12599 DailyMirror 2020-01-10T18:52:00.000Z The Mirror 10
## 12600 TheSun 2020-01-10T18:50:00.000Z The Sun 8
## 12601 DailyMirror 2020-01-10T18:48:00.000Z The Mirror 1
## 12602 guardian 2020-01-10T18:47:58.000Z The Guardian 7
## 12603 Telegraph 2020-01-10T18:43:06.000Z The Telegraph 14
## 12604 TheSun 2020-01-10T18:43:04.000Z The Sun 1
## 12605 DailyMirror 2020-01-10T18:41:11.000Z The Mirror 2
## 12606 DailyMailUK 2020-01-10T18:41:04.000Z Daily Mail U.K. 14
## 12607 DailyMirror 2020-01-10T18:41:00.000Z The Mirror 0
## 12608 EveningStandard 2020-01-10T18:40:57.000Z Evening Standard 1
## 12609 TheSun 2020-01-10T18:40:00.000Z The Sun 33
## 12610 guardian 2020-01-10T18:36:02.000Z The Guardian 8
## 12611 TheSun 2020-01-10T18:33:01.000Z The Sun 5
## 12612 MetroUK 2020-01-10T18:30:14.000Z Metro 3
## 12613 TheSun 2020-01-10T18:30:00.000Z The Sun 22
## 12614 guardian 2020-01-10T18:30:00.000Z The Guardian 5
## 12615 Telegraph 2020-01-10T18:27:37.000Z The Telegraph 1
## 12616 guardian 2020-01-10T18:25:59.000Z The Guardian 75
## 12617 guardian 2020-01-10T18:25:11.000Z The Guardian 60
## 12618 DailyMailUK 2020-01-10T18:23:06.000Z Daily Mail U.K. 39
## 12619 TheSun 2020-01-10T18:22:58.000Z The Sun 2
## 12620 EveningStandard 2020-01-10T18:21:01.000Z Evening Standard 0
## 12621 TheSun 2020-01-10T18:20:00.000Z The Sun 14
## 12622 DailyMirror 2020-01-10T18:18:51.000Z The Mirror 4
## 12623 Telegraph 2020-01-10T18:18:48.000Z The Telegraph 247
## 12624 DailyMirror 2020-01-10T18:14:00.000Z The Mirror 0
## 12625 guardian 2020-01-10T18:13:58.000Z The Guardian 36
## 12626 TheSun 2020-01-10T18:13:02.000Z The Sun 1
## 12627 DailyMirror 2020-01-10T18:12:00.000Z The Mirror 1
## 12628 TheSun 2020-01-10T18:10:00.000Z The Sun 12
## 12629 guardian 2020-01-10T18:09:08.000Z The Guardian 13
## 12630 Telegraph 2020-01-10T18:07:15.000Z The Telegraph 0
## 12631 guardian 2020-01-10T18:05:00.000Z The Guardian 16
## 12632 TheSun 2020-01-10T18:03:02.000Z The Sun 3
## 12633 Telegraph 2020-01-10T18:01:05.000Z The Telegraph 10
## 12634 DailyMirror 2020-01-10T18:01:00.000Z The Mirror 0
## 12635 EveningStandard 2020-01-10T18:00:55.000Z Evening Standard 0
## 12636 MetroUK 2020-01-10T18:00:14.000Z Metro 2
## 12637 DailyMailUK 2020-01-10T18:00:10.000Z Daily Mail U.K. 2
## 12638 guardian 2020-01-10T18:00:01.000Z The Guardian 1
## 12639 DailyMirror 2020-01-10T18:00:01.000Z The Mirror 2
## 12640 TheSun 2020-01-10T18:00:00.000Z The Sun 8
## 12641 guardian 2020-01-10T17:57:31.000Z The Guardian 9
## 12642 guardian 2020-01-10T17:57:30.000Z The Guardian 7
## 12643 TheSun 2020-01-10T17:52:53.000Z The Sun 1
## 12644 TheSun 2020-01-10T17:50:00.000Z The Sun 7
## 12645 thetimes 2020-01-10T17:49:26.000Z The Times 17
## 12646 guardian 2020-01-10T17:49:26.000Z The Guardian 11
## 12647 guardian 2020-01-10T17:47:50.000Z The Guardian 15
## 12648 DailyMirror 2020-01-10T17:47:44.000Z The Mirror 6
## 12649 DailyMirror 2020-01-10T17:47:00.000Z The Mirror 3
## 12650 TheSun 2020-01-10T17:45:58.000Z The Sun 2
## 12651 DailyMirror 2020-01-10T17:45:43.000Z The Mirror 1
## 12652 TheSun 2020-01-10T17:43:04.000Z The Sun 0
## 12653 DailyMirror 2020-01-10T17:43:00.000Z The Mirror 3
## 12654 DailyMailUK 2020-01-10T17:41:08.000Z Daily Mail U.K. 1
## 12655 EveningStandard 2020-01-10T17:41:04.000Z Evening Standard 1
## 12656 DailyMirror 2020-01-10T17:40:27.000Z The Mirror 3
## 12657 guardian 2020-01-10T17:40:00.000Z The Guardian 17
## 12658 TheSun 2020-01-10T17:40:00.000Z The Sun 31
## 12659 DailyMirror 2020-01-10T17:33:00.000Z The Mirror 3
## 12660 TheSun 2020-01-10T17:32:15.000Z The Sun 0
## 12661 DailyMirror 2020-01-10T17:32:00.000Z The Mirror 1
## 12662 DailyMirror 2020-01-10T17:31:18.000Z The Mirror 8
## 12663 EveningStandard 2020-01-10T17:31:03.000Z Evening Standard 1
## 12664 DailyMirror 2020-01-10T17:30:28.000Z The Mirror 2
## 12665 MetroUK 2020-01-10T17:30:25.000Z Metro 3
## 12666 TheSun 2020-01-10T17:30:00.000Z The Sun 5
## 12667 guardian 2020-01-10T17:29:46.000Z The Guardian 4
## 12668 guardian 2020-01-10T17:29:46.000Z The Guardian 36
## 12669 guardian 2020-01-10T17:29:44.000Z The Guardian 6
## 12670 guardian 2020-01-10T17:29:43.000Z The Guardian 12
## 12671 guardian 2020-01-10T17:29:41.000Z The Guardian 3
## 12672 guardian 2020-01-10T17:29:40.000Z The Guardian 64
## 12673 guardian 2020-01-10T17:29:38.000Z The Guardian 17
## 12674 guardian 2020-01-10T17:29:37.000Z The Guardian 42
## 12675 guardian 2020-01-10T17:29:36.000Z The Guardian 7
## 12676 guardian 2020-01-10T17:29:34.000Z The Guardian 0
## 12677 MetroUK 2020-01-10T17:27:38.000Z Metro 21
## 12678 DailyMirror 2020-01-10T17:27:00.000Z The Mirror 1
## 12679 DailyMirror 2020-01-10T17:26:29.000Z The Mirror 8
## 12680 EveningStandard 2020-01-10T17:26:22.000Z Evening Standard 1
## 12681 Telegraph 2020-01-10T17:26:06.000Z The Telegraph 3
## 12682 TheSun 2020-01-10T17:23:03.000Z The Sun 4
## 12683 DailyMirror 2020-01-10T17:22:29.000Z The Mirror 1
## 12684 DailyMailUK 2020-01-10T17:21:04.000Z Daily Mail U.K. 25
## 12685 EveningStandard 2020-01-10T17:20:55.000Z Evening Standard 1
## 12686 guardian 2020-01-10T17:20:55.000Z The Guardian 6
## 12687 TheSun 2020-01-10T17:20:00.000Z The Sun 1
## 12688 MetroUK 2020-01-10T17:17:07.000Z Metro 1
## 12689 thetimes 2020-01-10T17:16:47.000Z The Times 1
## 12690 DailyMailUK 2020-01-10T17:14:53.000Z Daily Mail U.K. 2
## 12691 DailyMirror 2020-01-10T17:14:09.000Z The Mirror 2
## 12692 TheSun 2020-01-10T17:12:59.000Z The Sun 3
## 12693 DailyMirror 2020-01-10T17:12:00.000Z The Mirror 4
## 12694 DailyMailUK 2020-01-10T17:10:05.000Z Daily Mail U.K. 5
## 12695 TheSun 2020-01-10T17:10:00.000Z The Sun 19
## 12696 guardian 2020-01-10T17:08:45.000Z The Guardian 22
## 12697 DailyMirror 2020-01-10T17:08:34.000Z The Mirror 6
## 12698 DailyMailUK 2020-01-10T17:07:57.000Z Daily Mail U.K. 11
## 12699 DailyMirror 2020-01-10T17:07:48.000Z The Mirror 3
## 12700 DailyMailUK 2020-01-10T17:05:08.000Z Daily Mail U.K. 1
## 12701 EveningStandard 2020-01-10T17:03:57.000Z Evening Standard 1
## 12702 EveningStandard 2020-01-10T17:03:45.000Z Evening Standard 1
## 12703 TheSun 2020-01-10T17:02:15.000Z The Sun 2
## 12704 DailyMirror 2020-01-10T17:01:00.000Z The Mirror 1
## 12705 guardian 2020-01-10T17:00:18.000Z The Guardian 4
## 12706 MetroUK 2020-01-10T17:00:14.000Z Metro 0
## 12707 DailyMirror 2020-01-10T17:00:07.000Z The Mirror 3
## 12708 TheSun 2020-01-10T17:00:01.000Z The Sun 6
## 12709 guardian 2020-01-10T16:59:02.000Z The Guardian 1
## 12710 guardian 2020-01-10T16:59:02.000Z The Guardian 9
## 12711 guardian 2020-01-10T16:59:00.000Z The Guardian 6
## 12712 guardian 2020-01-10T16:58:59.000Z The Guardian 4
## 12713 guardian 2020-01-10T16:58:57.000Z The Guardian 12
## 12714 guardian 2020-01-10T16:57:00.000Z The Guardian 22
## 12715 DailyMirror 2020-01-10T16:56:41.000Z The Mirror 0
## 12716 DailyMailUK 2020-01-10T16:55:03.000Z Daily Mail U.K. 1
## 12717 guardian 2020-01-10T16:54:01.000Z The Guardian 2
## 12718 EveningStandard 2020-01-10T16:54:00.000Z Evening Standard 3
## 12719 DailyMailUK 2020-01-10T16:53:00.000Z Daily Mail U.K. 6
## 12720 TheSun 2020-01-10T16:52:58.000Z The Sun 4
## 12721 TheSun 2020-01-10T16:50:00.000Z The Sun 36
## 12722 DailyMirror 2020-01-10T16:50:00.000Z The Mirror 6
## 12723 Telegraph 2020-01-10T16:49:07.000Z The Telegraph 19
## 12724 DailyMirror 2020-01-10T16:49:00.000Z The Mirror 3
## 12725 EveningStandard 2020-01-10T16:46:28.000Z Evening Standard 2
## 12726 guardian 2020-01-10T16:46:28.000Z The Guardian 14
## 12727 DailyMirror 2020-01-10T16:45:11.000Z The Mirror 10
## 12728 DailyMailUK 2020-01-10T16:45:08.000Z Daily Mail U.K. 39
## 12729 thetimes 2020-01-10T16:44:08.000Z The Times 10
## 12730 DailyMirror 2020-01-10T16:43:00.000Z The Mirror 1
## 12731 TheSun 2020-01-10T16:42:11.000Z The Sun 1
## 12732 DailyMirror 2020-01-10T16:42:00.000Z The Mirror 2
## 12733 TheSun 2020-01-10T16:40:00.000Z The Sun 9
## 12734 EveningStandard 2020-01-10T16:39:07.000Z Evening Standard 1
## 12735 DailyMirror 2020-01-10T16:39:00.000Z The Mirror 0
## 12736 guardian 2020-01-10T16:38:11.000Z The Guardian 12
## 12737 DailyMirror 2020-01-10T16:36:51.000Z The Mirror 8
## 12738 Telegraph 2020-01-10T16:36:22.000Z The Telegraph 1
## 12739 DailyMailUK 2020-01-10T16:35:36.000Z Daily Mail U.K. 1
## 12740 EveningStandard 2020-01-10T16:35:11.000Z Evening Standard 0
## 12741 DailyMirror 2020-01-10T16:33:26.000Z The Mirror 12
## 12742 TheSun 2020-01-10T16:32:15.000Z The Sun 5
## 12743 Telegraph 2020-01-10T16:31:19.000Z The Telegraph 30
## 12744 MetroUK 2020-01-10T16:30:12.000Z Metro 2
## 12745 TheSun 2020-01-10T16:30:00.000Z The Sun 15
## 12746 guardian 2020-01-10T16:29:54.000Z The Guardian 2
## 12747 guardian 2020-01-10T16:29:53.000Z The Guardian 4
## 12748 guardian 2020-01-10T16:29:52.000Z The Guardian 6
## 12749 guardian 2020-01-10T16:29:50.000Z The Guardian 21
## 12750 guardian 2020-01-10T16:29:49.000Z The Guardian 5
## 12751 DailyMirror 2020-01-10T16:29:12.000Z The Mirror 3
## 12752 DailyMirror 2020-01-10T16:27:46.000Z The Mirror 7
## 12753 DailyMirror 2020-01-10T16:27:41.000Z The Mirror 1
## 12754 guardian 2020-01-10T16:27:22.000Z The Guardian 4
## 12755 EveningStandard 2020-01-10T16:27:20.000Z Evening Standard 2
## 12756 DailyMirror 2020-01-10T16:27:17.000Z The Mirror 8
## 12757 DailyMailUK 2020-01-10T16:25:52.000Z Daily Mail U.K. 16
## 12758 DailyMailUK 2020-01-10T16:22:42.000Z Daily Mail U.K. 4
## 12759 TheSun 2020-01-10T16:22:28.000Z The Sun 6
## 12760 TheSun 2020-01-10T16:20:00.000Z The Sun 7
## 12761 guardian 2020-01-10T16:19:25.000Z The Guardian 10
## 12762 EveningStandard 2020-01-10T16:19:24.000Z Evening Standard 3
## 12763 DailyMirror 2020-01-10T16:19:00.000Z The Mirror 1
## 12764 DailyMirror 2020-01-10T16:15:31.000Z The Mirror 15
## 12765 Telegraph 2020-01-10T16:13:54.000Z The Telegraph 576
## 12766 DailyMirror 2020-01-10T16:13:36.000Z The Mirror 2
## 12767 EveningStandard 2020-01-10T16:12:21.000Z Evening Standard 7
## 12768 DailyMailUK 2020-01-10T16:12:07.000Z Daily Mail U.K. 6
## 12769 guardian 2020-01-10T16:11:30.000Z The Guardian 15
## 12770 DailyMirror 2020-01-10T16:11:20.000Z The Mirror 4
## 12771 TheSun 2020-01-10T16:10:00.000Z The Sun 19
## 12772 TheSun 2020-01-10T16:07:31.000Z The Sun 1
## 12773 DailyMirror 2020-01-10T16:04:45.000Z The Mirror 4
## 12774 EveningStandard 2020-01-10T16:04:28.000Z Evening Standard 0
## 12775 MetroUK 2020-01-10T16:04:12.000Z Metro 3
## 12776 TheSun 2020-01-10T16:02:24.000Z The Sun 1
## 12777 guardian 2020-01-10T16:01:54.000Z The Guardian 2
## 12778 guardian 2020-01-10T16:01:53.000Z The Guardian 17
## 12779 guardian 2020-01-10T16:01:52.000Z The Guardian 1
## 12780 guardian 2020-01-10T16:01:50.000Z The Guardian 14
## 12781 Telegraph 2020-01-10T16:01:18.000Z The Telegraph 9
## 12782 MetroUK 2020-01-10T16:00:15.000Z Metro 1
## 12783 TheSun 2020-01-10T16:00:00.000Z The Sun 3
## 12784 MetroUK 2020-01-10T15:56:51.000Z Metro 28
## 12785 EveningStandard 2020-01-10T15:55:46.000Z Evening Standard 23
## 12786 TheSun 2020-01-10T15:53:14.000Z The Sun 7
## 12787 guardian 2020-01-10T15:53:09.000Z The Guardian 21
## 12788 DailyMirror 2020-01-10T15:52:47.000Z The Mirror 5
## 12789 DailyMirror 2020-01-10T15:52:21.000Z The Mirror 1
## 12790 TheSun 2020-01-10T15:52:16.000Z The Sun 1
## 12791 MetroUK 2020-01-10T15:51:21.000Z Metro 75
## 12792 DailyMailUK 2020-01-10T15:50:03.000Z Daily Mail U.K. 1
## 12793 TheSun 2020-01-10T15:50:00.000Z The Sun 14
## 12794 EveningStandard 2020-01-10T15:49:06.000Z Evening Standard 1
## 12795 DailyMailUK 2020-01-10T15:49:01.000Z Daily Mail U.K. 99
## 12796 DailyMirror 2020-01-10T15:48:25.000Z The Mirror 22
## 12797 MetroUK 2020-01-10T15:45:28.000Z Metro 1
## 12798 DailyMirror 2020-01-10T15:45:00.000Z The Mirror 1
## 12799 TheSun 2020-01-10T15:42:57.000Z The Sun 0
## 12800 guardian 2020-01-10T15:42:57.000Z The Guardian 15
## 12801 DailyMirror 2020-01-10T15:42:00.000Z The Mirror 1
## 12802 DailyMailUK 2020-01-10T15:40:07.000Z Daily Mail U.K. 1
## 12803 TheSun 2020-01-10T15:40:00.000Z The Sun 11
## 12804 EveningStandard 2020-01-10T15:39:17.000Z Evening Standard 0
## 12805 MetroUK 2020-01-10T15:36:09.000Z Metro 5
## 12806 thetimes 2020-01-10T15:35:52.000Z The Times 2
## 12807 guardian 2020-01-10T15:34:18.000Z The Guardian 4
## 12808 DailyMailUK 2020-01-10T15:34:17.000Z Daily Mail U.K. 2
## 12809 DailyMirror 2020-01-10T15:32:25.000Z The Mirror 7
## 12810 TheSun 2020-01-10T15:32:21.000Z The Sun 3
## 12811 DailyMirror 2020-01-10T15:31:14.000Z The Mirror 18
## 12812 Telegraph 2020-01-10T15:30:26.000Z The Telegraph 17
## 12813 MetroUK 2020-01-10T15:30:13.000Z Metro 6
## 12814 DailyMailUK 2020-01-10T15:30:04.000Z Daily Mail U.K. 1
## 12815 TheSun 2020-01-10T15:30:00.000Z The Sun 2
## 12816 DailyMailUK 2020-01-10T15:29:49.000Z Daily Mail U.K. 14
## 12817 EveningStandard 2020-01-10T15:29:20.000Z Evening Standard 1
## 12818 thetimes 2020-01-10T15:28:25.000Z The Times 3
## 12819 guardian 2020-01-10T15:28:24.000Z The Guardian 32
## 12820 DailyMirror 2020-01-10T15:27:58.000Z The Mirror 0
## 12821 TheSun 2020-01-10T15:27:28.000Z The Sun 1
## 12822 TheSun 2020-01-10T15:27:27.000Z The Sun 3
## 12823 DailyMirror 2020-01-10T15:27:00.000Z The Mirror 7
## 12824 DailyMirror 2020-01-10T15:26:00.000Z The Mirror 1
## 12825 DailyMailUK 2020-01-10T15:25:51.000Z Daily Mail U.K. 4
## 12826 TheSun 2020-01-10T15:22:39.000Z The Sun 2
## 12827 DailyMirror 2020-01-10T15:21:57.000Z The Mirror 5
## 12828 DailyMailUK 2020-01-10T15:20:07.000Z Daily Mail U.K. 2
## 12829 TheSun 2020-01-10T15:20:00.000Z The Sun 42
## 12830 DailyMirror 2020-01-10T15:19:00.000Z The Mirror 3
## 12831 EveningStandard 2020-01-10T15:18:32.000Z Evening Standard 0
## 12832 TheSun 2020-01-10T15:18:23.000Z The Sun 305
## 12833 guardian 2020-01-10T15:17:35.000Z The Guardian 31
## 12834 DailyMirror 2020-01-10T15:13:31.000Z The Mirror 8
## 12835 DailyMirror 2020-01-10T15:13:00.000Z The Mirror 0
## 12836 TheSun 2020-01-10T15:12:16.000Z The Sun 5
## 12837 DailyMirror 2020-01-10T15:12:05.000Z The Mirror 4
## 12838 TheSun 2020-01-10T15:10:00.000Z The Sun 37
## 12839 DailyMailUK 2020-01-10T15:09:07.000Z Daily Mail U.K. 5
## 12840 thetimes 2020-01-10T15:08:19.000Z The Times 1
## 12841 EveningStandard 2020-01-10T15:08:17.000Z Evening Standard 1
## 12842 TheSun 2020-01-10T15:07:20.000Z The Sun 2
## 12843 MetroUK 2020-01-10T15:06:28.000Z Metro 3
## 12844 guardian 2020-01-10T15:05:20.000Z The Guardian 2
## 12845 guardian 2020-01-10T15:05:18.000Z The Guardian 6
## 12846 guardian 2020-01-10T15:05:17.000Z The Guardian 9
## 12847 guardian 2020-01-10T15:05:15.000Z The Guardian 29
## 12848 guardian 2020-01-10T15:05:14.000Z The Guardian 5
## 12849 guardian 2020-01-10T15:05:13.000Z The Guardian 1
## 12850 DailyMirror 2020-01-10T15:03:00.000Z The Mirror 1
## 12851 TheSun 2020-01-10T15:02:20.000Z The Sun 4
## 12852 Telegraph 2020-01-10T15:00:22.000Z The Telegraph 6
## 12853 MetroUK 2020-01-10T15:00:17.000Z Metro 2
## 12854 DailyMailUK 2020-01-10T15:00:08.000Z Daily Mail U.K. 5
## 12855 TheSun 2020-01-10T15:00:01.000Z The Sun 3
## 12856 DailyMirror 2020-01-10T15:00:01.000Z The Mirror 1
## 12857 EveningStandard 2020-01-10T14:57:24.000Z Evening Standard 0
## 12858 DailyMailUK 2020-01-11T13:06:34.000Z Daily Mail U.K. 9
## 12859 DailyMirror 2020-01-11T13:03:00.000Z The Mirror 0
## 12860 TheSun 2020-01-11T13:02:16.000Z The Sun 2
## 12861 DailyMirror 2020-01-11T13:02:00.000Z The Mirror 7
## 12862 EveningStandard 2020-01-11T13:00:25.000Z Evening Standard 0
## 12863 MetroUK 2020-01-11T13:00:15.000Z Metro 56
## 12864 TheSun 2020-01-11T13:00:00.000Z The Sun 13
## 12865 guardian 2020-01-11T12:58:17.000Z The Guardian 3
## 12866 DailyMirror 2020-01-11T12:55:41.000Z The Mirror 0
## 12867 DailyMirror 2020-01-11T12:53:00.000Z The Mirror 0
## 12868 TheSun 2020-01-11T12:52:33.000Z The Sun 1
## 12869 TheSun 2020-01-11T12:51:54.000Z The Sun 11
## 12870 DailyMirror 2020-01-11T12:51:00.000Z The Mirror 3
## 12871 guardian 2020-01-11T12:50:19.000Z The Guardian 38
## 12872 TheSun 2020-01-11T12:50:00.000Z The Sun 29
## 12873 Telegraph 2020-01-11T12:48:23.000Z The Telegraph 4
## 12874 DailyMirror 2020-01-11T12:46:00.000Z The Mirror 4
## 12875 DailyMirror 2020-01-11T12:45:11.000Z The Mirror 2
## 12876 DailyMailUK 2020-01-11T12:44:01.000Z Daily Mail U.K. 4
## 12877 DailyMirror 2020-01-11T12:43:00.000Z The Mirror 3
## 12878 thetimes 2020-01-11T12:42:29.000Z The Times 13
## 12879 TheSun 2020-01-11T12:42:28.000Z The Sun 4
## 12880 EveningStandard 2020-01-11T12:40:29.000Z Evening Standard 1
## 12881 TheSun 2020-01-11T12:40:00.000Z The Sun 8
## 12882 guardian 2020-01-11T12:38:31.000Z The Guardian 33
## 12883 DailyMirror 2020-01-11T12:37:00.000Z The Mirror 2
## 12884 DailyMirror 2020-01-11T12:33:39.000Z The Mirror 0
## 12885 TheSun 2020-01-11T12:32:36.000Z The Sun 0
## 12886 MetroUK 2020-01-11T12:30:05.000Z Metro 3
## 12887 TheSun 2020-01-11T12:30:00.000Z The Sun 6
## 12888 guardian 2020-01-11T12:30:00.000Z The Guardian 3
## 12889 DailyMailUK 2020-01-11T12:29:04.000Z Daily Mail U.K. 2
## 12890 MetroUK 2020-01-11T12:29:02.000Z Metro 3
## 12891 guardian 2020-01-11T12:27:43.000Z The Guardian 8
## 12892 DailyMirror 2020-01-11T12:26:43.000Z The Mirror 2
## 12893 TheSun 2020-01-11T12:26:35.000Z The Sun 36
## 12894 DailyMirror 2020-01-11T12:23:00.000Z The Mirror 1
## 12895 TheSun 2020-01-11T12:22:47.000Z The Sun 12
## 12896 DailyMirror 2020-01-11T12:22:44.000Z The Mirror 2
## 12897 DailyMirror 2020-01-11T12:22:00.000Z The Mirror 3
## 12898 guardian 2020-01-11T12:21:15.000Z The Guardian 11
## 12899 guardian 2020-01-11T12:20:50.000Z The Guardian 9
## 12900 EveningStandard 2020-01-11T12:20:49.000Z Evening Standard 1
## 12901 TheSun 2020-01-11T12:20:00.000Z The Sun 10
## 12902 DailyMirror 2020-01-11T12:19:15.000Z The Mirror 8
## 12903 DailyMirror 2020-01-11T12:18:57.000Z The Mirror 8
## 12904 MetroUK 2020-01-11T12:16:36.000Z Metro 4
## 12905 thetimes 2020-01-11T12:15:55.000Z The Times 10
## 12906 Telegraph 2020-01-11T12:14:55.000Z The Telegraph 21
## 12907 DailyMailUK 2020-01-11T12:14:05.000Z Daily Mail U.K. 23
## 12908 TheSun 2020-01-11T12:12:52.000Z The Sun 2
## 12909 DailyMirror 2020-01-11T12:12:13.000Z The Mirror 4
## 12910 TheSun 2020-01-11T12:10:00.000Z The Sun 11
## 12911 guardian 2020-01-11T12:09:57.000Z The Guardian 15
## 12912 DailyMirror 2020-01-11T12:07:00.000Z The Mirror 2
## 12913 thetimes 2020-01-11T12:06:37.000Z The Times 5
## 12914 DailyMirror 2020-01-11T12:04:00.000Z The Mirror 1
## 12915 TheSun 2020-01-11T12:02:58.000Z The Sun 10
## 12916 guardian 2020-01-11T12:01:04.000Z The Guardian 3
## 12917 guardian 2020-01-11T12:01:03.000Z The Guardian 7
## 12918 DailyMirror 2020-01-11T12:01:00.000Z The Mirror 0
## 12919 EveningStandard 2020-01-11T12:00:58.000Z Evening Standard 2
## 12920 MetroUK 2020-01-11T12:00:09.000Z Metro 209
## 12921 TheSun 2020-01-11T12:00:00.000Z The Sun 2
## 12922 DailyMailUK 2020-01-11T11:59:03.000Z Daily Mail U.K. 9
## 12923 guardian 2020-01-11T11:59:00.000Z The Guardian 5
## 12924 DailyMailUK 2020-01-11T11:58:41.000Z Daily Mail U.K. 3
## 12925 DailyMirror 2020-01-11T11:57:28.000Z The Mirror 7
## 12926 TheSun 2020-01-11T11:52:09.000Z The Sun 9
## 12927 TheSun 2020-01-11T11:51:11.000Z The Sun 2
## 12928 DailyMirror 2020-01-11T11:51:00.000Z The Mirror 7
## 12929 TheSun 2020-01-11T11:50:00.000Z The Sun 2
## 12930 guardian 2020-01-11T11:47:13.000Z The Guardian 36
## 12931 DailyMirror 2020-01-11T11:46:48.000Z The Mirror 5
## 12932 TheSun 2020-01-11T11:44:31.000Z The Sun 4
## 12933 DailyMailUK 2020-01-11T11:44:02.000Z Daily Mail U.K. 13
## 12934 DailyMirror 2020-01-11T11:44:01.000Z The Mirror 0
## 12935 DailyMirror 2020-01-11T11:43:00.000Z The Mirror 0
## 12936 TheSun 2020-01-11T11:42:16.000Z The Sun 14
## 12937 DailyMirror 2020-01-11T11:41:36.000Z The Mirror 4
## 12938 EveningStandard 2020-01-11T11:40:17.000Z Evening Standard 2
## 12939 TheSun 2020-01-11T11:40:00.000Z The Sun 8
## 12940 Telegraph 2020-01-11T11:39:33.000Z The Telegraph 9
## 12941 DailyMirror 2020-01-11T11:38:00.000Z The Mirror 0
## 12942 DailyMirror 2020-01-11T11:37:00.000Z The Mirror 2
## 12943 thetimes 2020-01-11T11:35:03.000Z The Times 3
## 12944 guardian 2020-01-11T11:33:28.000Z The Guardian 32
## 12945 DailyMirror 2020-01-11T11:33:25.000Z The Mirror 1
## 12946 TheSun 2020-01-11T11:32:31.000Z The Sun 11
## 12947 TheSun 2020-01-11T11:32:17.000Z The Sun 3
## 12948 MetroUK 2020-01-11T11:30:02.000Z Metro 3
## 12949 TheSun 2020-01-11T11:30:00.000Z The Sun 6
## 12950 DailyMailUK 2020-01-11T11:29:02.000Z Daily Mail U.K. 3
## 12951 MetroUK 2020-01-11T11:25:37.000Z Metro 1
## 12952 TheSun 2020-01-11T11:22:37.000Z The Sun 6
## 12953 EveningStandard 2020-01-11T11:20:41.000Z Evening Standard 1
## 12954 TheSun 2020-01-11T11:20:00.000Z The Sun 22
## 12955 DailyMirror 2020-01-11T11:20:00.000Z The Mirror 2
## 12956 Telegraph 2020-01-11T11:19:43.000Z The Telegraph 19
## 12957 guardian 2020-01-11T11:17:44.000Z The Guardian 24
## 12958 DailyMailUK 2020-01-11T11:14:02.000Z Daily Mail U.K. 10
## 12959 DailyMirror 2020-01-11T11:14:00.000Z The Mirror 1
## 12960 TheSun 2020-01-11T11:12:49.000Z The Sun 16
## 12961 DailyMirror 2020-01-11T11:11:00.000Z The Mirror 6
## 12962 MetroUK 2020-01-11T11:10:50.000Z Metro 2
## 12963 TheSun 2020-01-11T11:10:00.000Z The Sun 30
## 12964 DailyMirror 2020-01-11T11:06:00.000Z The Mirror 6
## 12965 DailyMirror 2020-01-11T11:06:00.000Z The Mirror 5
## 12966 TheSun 2020-01-11T11:05:58.000Z The Sun 12
## 12967 Telegraph 2020-01-11T11:05:19.000Z The Telegraph 6
## 12968 guardian 2020-01-11T11:04:24.000Z The Guardian 46
## 12969 DailyMirror 2020-01-11T11:03:00.000Z The Mirror 4
## 12970 TheSun 2020-01-11T11:02:18.000Z The Sun 2
## 12971 Telegraph 2020-01-11T11:01:19.000Z The Telegraph 1
## 12972 EveningStandard 2020-01-11T11:01:07.000Z Evening Standard 0
## 12973 MetroUK 2020-01-11T11:00:07.000Z Metro 1
## 12974 TheSun 2020-01-11T11:00:00.000Z The Sun 2
## 12975 guardian 2020-01-11T11:00:00.000Z The Guardian 7
## 12976 DailyMailUK 2020-01-11T10:59:06.000Z Daily Mail U.K. 2
## 12977 guardian 2020-01-11T10:58:08.000Z The Guardian 20
## 12978 DailyMirror 2020-01-11T10:57:21.000Z The Mirror 3
## 12979 DailyMirror 2020-01-11T10:56:44.000Z The Mirror 264
## 12980 DailyMirror 2020-01-11T10:54:02.000Z The Mirror 22
## 12981 TheSun 2020-01-11T10:52:14.000Z The Sun 3
## 12982 DailyMirror 2020-01-11T10:50:56.000Z The Mirror 2
## 12983 TheSun 2020-01-11T10:50:00.000Z The Sun 4
## 12984 DailyMirror 2020-01-11T10:49:00.000Z The Mirror 5
## 12985 thetimes 2020-01-11T10:48:21.000Z The Times 8
## 12986 DailyMirror 2020-01-11T10:46:41.000Z The Mirror 1
## 12987 guardian 2020-01-11T10:46:24.000Z The Guardian 61
## 12988 DailyMailUK 2020-01-11T10:44:01.000Z Daily Mail U.K. 3
## 12989 guardian 2020-01-11T10:43:49.000Z The Guardian 18
## 12990 TheSun 2020-01-11T10:43:02.000Z The Sun 2
## 12991 TheSun 2020-01-11T10:42:12.000Z The Sun 30
## 12992 DailyMirror 2020-01-11T10:42:00.000Z The Mirror 1
## 12993 EveningStandard 2020-01-11T10:40:13.000Z Evening Standard 1
## 12994 TheSun 2020-01-11T10:40:00.000Z The Sun 13
## 12995 guardian 2020-01-11T10:37:46.000Z The Guardian 26
## 12996 guardian 2020-01-11T10:37:45.000Z The Guardian 1
## 12997 guardian 2020-01-11T10:37:43.000Z The Guardian 3
## 12998 Telegraph 2020-01-11T10:35:23.000Z The Telegraph 10
## 12999 guardian 2020-01-11T10:35:18.000Z The Guardian 34
## 13000 TheSun 2020-01-11T10:32:22.000Z The Sun 1
## 13001 DailyMirror 2020-01-11T10:31:26.000Z The Mirror 7
## 13002 MetroUK 2020-01-11T10:30:11.000Z Metro 10
## 13003 TheSun 2020-01-11T10:30:00.000Z The Sun 39
## 13004 DailyMailUK 2020-01-11T10:29:05.000Z Daily Mail U.K. 12
## 13005 MetroUK 2020-01-11T10:24:06.000Z Metro 4
## 13006 DailyMirror 2020-01-11T10:23:00.000Z The Mirror 2
## 13007 DailyMirror 2020-01-11T10:23:00.000Z The Mirror 1
## 13008 TheSun 2020-01-11T10:22:25.000Z The Sun 3
## 13009 guardian 2020-01-11T10:21:26.000Z The Guardian 9
## 13010 EveningStandard 2020-01-11T10:20:27.000Z Evening Standard 1
## 13011 TheSun 2020-01-11T10:20:00.000Z The Sun 8
## 13012 Telegraph 2020-01-11T10:18:43.000Z The Telegraph 7
## 13013 DailyMirror 2020-01-11T10:18:04.000Z The Mirror 7
## 13014 DailyMirror 2020-01-11T10:17:25.000Z The Mirror 0
## 13015 DailyMailUK 2020-01-11T10:14:02.000Z Daily Mail U.K. 0
## 13016 TheSun 2020-01-11T10:13:26.000Z The Sun 2
## 13017 MetroUK 2020-01-11T10:13:13.000Z Metro 4
## 13018 TheSun 2020-01-11T10:12:37.000Z The Sun 11
## 13019 TheSun 2020-01-11T10:10:00.000Z The Sun 21
## 13020 guardian 2020-01-11T10:09:15.000Z The Guardian 17
## 13021 guardian 2020-01-11T10:09:13.000Z The Guardian 14
## 13022 guardian 2020-01-11T10:09:12.000Z The Guardian 14
## 13023 MetroUK 2020-01-11T10:09:04.000Z Metro 5
## 13024 DailyMirror 2020-01-11T10:03:00.000Z The Mirror 7
## 13025 TheSun 2020-01-11T10:02:13.000Z The Sun 0
## 13026 Telegraph 2020-01-11T10:01:15.000Z The Telegraph 35
## 13027 EveningStandard 2020-01-11T10:01:03.000Z Evening Standard 4
## 13028 DailyMirror 2020-01-11T10:01:00.000Z The Mirror 0
## 13029 DailyMirror 2020-01-11T10:01:00.000Z The Mirror 0
## 13030 DailyMirror 2020-01-11T10:00:48.000Z The Mirror 2
## 13031 DailyMirror 2020-01-11T10:00:28.000Z The Mirror 0
## 13032 DailyMailUK 2020-01-11T10:00:13.000Z Daily Mail U.K. 0
## 13033 MetroUK 2020-01-11T10:00:11.000Z Metro 2
## 13034 DailyMirror 2020-01-11T10:00:00.000Z The Mirror 0
## 13035 guardian 2020-01-11T10:00:00.000Z The Guardian 3
## 13036 TheSun 2020-01-11T10:00:00.000Z The Sun 6
## 13037 thetimes 2020-01-11T09:59:04.000Z The Times 9
## 13038 DailyMirror 2020-01-11T09:57:00.000Z The Mirror 0
## 13039 DailyMirror 2020-01-11T09:56:25.000Z The Mirror 11
## 13040 DailyMirror 2020-01-11T09:55:07.000Z The Mirror 3
## 13041 DailyMirror 2020-01-11T09:54:46.000Z The Mirror 11
## 13042 TheSun 2020-01-11T09:52:11.000Z The Sun 6
## 13043 TheSun 2020-01-11T09:50:00.000Z The Sun 72
## 13044 DailyMirror 2020-01-11T09:47:32.000Z The Mirror 2
## 13045 DailyMailUK 2020-01-11T09:45:05.000Z Daily Mail U.K. 2
## 13046 DailyMirror 2020-01-11T09:44:18.000Z The Mirror 5
## 13047 TheSun 2020-01-11T09:42:19.000Z The Sun 2
## 13048 DailyMirror 2020-01-11T09:42:00.000Z The Mirror 1
## 13049 DailyMirror 2020-01-11T09:41:48.000Z The Mirror 5
## 13050 guardian 2020-01-11T09:41:30.000Z The Guardian 20
## 13051 EveningStandard 2020-01-11T09:40:22.000Z Evening Standard 0
## 13052 TheSun 2020-01-11T09:40:00.000Z The Sun 16
## 13053 Telegraph 2020-01-11T09:39:45.000Z The Telegraph 5
## 13054 thetimes 2020-01-11T09:33:39.000Z The Times 7
## 13055 TheSun 2020-01-11T09:32:31.000Z The Sun 2
## 13056 thetimes 2020-01-11T09:31:27.000Z The Times 4
## 13057 MetroUK 2020-01-11T09:31:04.000Z Metro 1
## 13058 Telegraph 2020-01-11T09:30:41.000Z The Telegraph 14
## 13059 guardian 2020-01-11T09:30:36.000Z The Guardian 2
## 13060 DailyMailUK 2020-01-11T09:30:07.000Z Daily Mail U.K. 7
## 13061 DailyMirror 2020-01-11T09:30:00.000Z The Mirror 4
## 13062 TheSun 2020-01-11T09:30:00.000Z The Sun 12
## 13063 TheSun 2020-01-11T09:22:35.000Z The Sun 1
## 13064 DailyMirror 2020-01-11T09:22:00.000Z The Mirror 0
## 13065 TheSun 2020-01-11T09:20:16.000Z The Sun 1
## 13066 EveningStandard 2020-01-11T09:20:13.000Z Evening Standard 4
## 13067 TheSun 2020-01-11T09:20:00.000Z The Sun 19
## 13068 guardian 2020-01-11T09:16:05.000Z The Guardian 15
## 13069 Telegraph 2020-01-11T09:15:22.000Z The Telegraph 14
## 13070 DailyMailUK 2020-01-11T09:15:03.000Z Daily Mail U.K. 44
## 13071 TheSun 2020-01-11T09:12:22.000Z The Sun 10
## 13072 DailyMirror 2020-01-11T09:11:00.000Z The Mirror 4
## 13073 TheSun 2020-01-11T09:10:00.000Z The Sun 6
## 13074 DailyMailUK 2020-01-11T09:08:15.000Z Daily Mail U.K. 2
## 13075 DailyMirror 2020-01-11T09:05:00.000Z The Mirror 2
## 13076 DailyMirror 2020-01-11T09:04:40.000Z The Mirror 0
## 13077 DailyMirror 2020-01-11T09:02:49.000Z The Mirror 1
## 13078 TheSun 2020-01-11T09:02:33.000Z The Sun 1
## 13079 Telegraph 2020-01-11T09:00:41.000Z The Telegraph 0
## 13080 EveningStandard 2020-01-11T09:00:32.000Z Evening Standard 3
## 13081 MetroUK 2020-01-11T09:00:14.000Z Metro 0
## 13082 DailyMailUK 2020-01-11T09:00:07.000Z Daily Mail U.K. 19
## 13083 guardian 2020-01-11T09:00:00.000Z The Guardian 4
## 13084 TheSun 2020-01-11T09:00:00.000Z The Sun 10
## 13085 DailyMirror 2020-01-11T08:59:44.000Z The Mirror 2
## 13086 TheSun 2020-01-11T08:52:41.000Z The Sun 5
## 13087 DailyMirror 2020-01-11T08:52:29.000Z The Mirror 2
## 13088 TheSun 2020-01-11T08:50:00.000Z The Sun 30
## 13089 DailyMirror 2020-01-11T08:49:52.000Z The Mirror 0
## 13090 TheSun 2020-01-11T08:48:06.000Z The Sun 2
## 13091 MetroUK 2020-01-11T08:44:54.000Z Metro 14
## 13092 MetroUK 2020-01-11T08:43:56.000Z Metro 3
## 13093 DailyMirror 2020-01-11T08:43:37.000Z The Mirror 1
## 13094 TheSun 2020-01-11T08:42:11.000Z The Sun 3
## 13095 DailyMirror 2020-01-11T08:42:00.000Z The Mirror 1
## 13096 Telegraph 2020-01-11T08:41:43.000Z The Telegraph 15
## 13097 EveningStandard 2020-01-11T08:40:11.000Z Evening Standard 4
## 13098 TheSun 2020-01-11T08:40:00.000Z The Sun 11
## 13099 DailyMirror 2020-01-11T08:40:00.000Z The Mirror 6
## 13100 DailyMailUK 2020-01-11T08:39:53.000Z Daily Mail U.K. 4
## 13101 TheSun 2020-01-11T08:32:22.000Z The Sun 1
## 13102 TheSun 2020-01-11T08:31:06.000Z The Sun 3
## 13103 MetroUK 2020-01-11T08:30:05.000Z Metro 4
## 13104 TheSun 2020-01-11T08:30:00.000Z The Sun 5
## 13105 guardian 2020-01-11T08:29:32.000Z The Guardian 3
## 13106 DailyMailUK 2020-01-11T08:27:05.000Z Daily Mail U.K. 17
## 13107 DailyMirror 2020-01-11T08:22:41.000Z The Mirror 0
## 13108 TheSun 2020-01-11T08:22:38.000Z The Sun 22
## 13109 DailyMirror 2020-01-11T08:22:00.000Z The Mirror 0
## 13110 EveningStandard 2020-01-11T08:20:40.000Z Evening Standard 0
## 13111 TheSun 2020-01-11T08:20:00.000Z The Sun 3
## 13112 DailyMirror 2020-01-11T08:17:59.000Z The Mirror 1
## 13113 guardian 2020-01-11T08:17:08.000Z The Guardian 13
## 13114 guardian 2020-01-11T08:17:07.000Z The Guardian 30
## 13115 guardian 2020-01-11T08:17:03.000Z The Guardian 10
## 13116 Telegraph 2020-01-11T08:15:47.000Z The Telegraph 13
## 13117 DailyMirror 2020-01-11T08:13:06.000Z The Mirror 7
## 13118 TheSun 2020-01-11T08:12:48.000Z The Sun 5
## 13119 DailyMirror 2020-01-11T08:10:00.000Z The Mirror 0
## 13120 DailyMirror 2020-01-11T08:10:00.000Z The Mirror 0
## 13121 TheSun 2020-01-11T08:10:00.000Z The Sun 1
## 13122 DailyMailUK 2020-01-11T08:05:57.000Z Daily Mail U.K. 8
## 13123 guardian 2020-01-11T08:04:36.000Z The Guardian 145
## 13124 DailyMirror 2020-01-11T08:03:00.000Z The Mirror 1
## 13125 TheSun 2020-01-11T08:02:38.000Z The Sun 7
## 13126 Telegraph 2020-01-11T08:00:56.000Z The Telegraph 12
## 13127 EveningStandard 2020-01-11T08:00:56.000Z Evening Standard 3
## 13128 DailyMirror 2020-01-11T08:00:00.000Z The Mirror 0
## 13129 TheSun 2020-01-11T08:00:00.000Z The Sun 8
## 13130 DailyMirror 2020-01-11T07:56:55.000Z The Mirror 328
## 13131 TheSun 2020-01-11T07:52:42.000Z The Sun 6
## 13132 guardian 2020-01-11T07:52:33.000Z The Guardian 2
## 13133 DailyMirror 2020-01-11T07:51:15.000Z The Mirror 8
## 13134 TheSun 2020-01-11T07:50:00.000Z The Sun 3
## 13135 TheSun 2020-01-11T07:46:48.000Z The Sun 2
## 13136 Telegraph 2020-01-11T07:45:52.000Z The Telegraph 14
## 13137 guardian 2020-01-11T07:44:51.000Z The Guardian 237
## 13138 TheSun 2020-01-11T07:42:40.000Z The Sun 9
## 13139 EveningStandard 2020-01-11T07:40:42.000Z Evening Standard 0
## 13140 DailyMirror 2020-01-11T07:40:00.000Z The Mirror 1
## 13141 TheSun 2020-01-11T07:40:00.000Z The Sun 12
## 13142 TheSun 2020-01-11T07:32:50.000Z The Sun 6
## 13143 Telegraph 2020-01-11T07:30:38.000Z The Telegraph 4
## 13144 TheSun 2020-01-11T07:30:00.000Z The Sun 7
## 13145 guardian 2020-01-11T07:26:16.000Z The Guardian 71
## 13146 guardian 2020-01-11T07:26:14.000Z The Guardian 2
## 13147 TheSun 2020-01-11T07:22:47.000Z The Sun 244
## 13148 thetimes 2020-01-11T07:20:49.000Z The Times 9
## 13149 EveningStandard 2020-01-11T07:20:47.000Z Evening Standard 0
## 13150 TheSun 2020-01-11T07:20:00.000Z The Sun 9
## 13151 TheSun 2020-01-11T07:12:56.000Z The Sun 3
## 13152 TheSun 2020-01-11T07:10:00.000Z The Sun 5
## 13153 TheSun 2020-01-11T07:02:51.000Z The Sun 1
## 13154 thetimes 2020-01-11T07:00:53.000Z The Times 6
## 13155 EveningStandard 2020-01-11T07:00:49.000Z Evening Standard 0
## 13156 Telegraph 2020-01-11T07:00:49.000Z The Telegraph 6
## 13157 TheSun 2020-01-11T07:00:00.000Z The Sun 19
## 13158 guardian 2020-01-11T06:57:45.000Z The Guardian 38
## 13159 TheSun 2020-01-11T06:42:08.000Z The Sun 0
## 13160 thetimes 2020-01-11T06:40:14.000Z The Times 9
## 13161 EveningStandard 2020-01-11T06:40:11.000Z Evening Standard 0
## 13162 TheSun 2020-01-11T06:40:00.000Z The Sun 9
## 13163 DailyMirror 2020-01-11T06:39:00.000Z The Mirror 2
## 13164 DailyMirror 2020-01-11T06:34:00.000Z The Mirror 16
## 13165 guardian 2020-01-11T06:31:35.000Z The Guardian 24
## 13166 DailyMirror 2020-01-11T06:30:45.000Z The Mirror 5
## 13167 Telegraph 2020-01-11T06:30:20.000Z The Telegraph 12
## 13168 DailyMailUK 2020-01-11T06:25:54.000Z Daily Mail U.K. 123
## 13169 TheSun 2020-01-11T06:22:29.000Z The Sun 2
## 13170 thetimes 2020-01-11T06:20:12.000Z The Times 11
## 13171 EveningStandard 2020-01-11T06:20:10.000Z Evening Standard 0
## 13172 TheSun 2020-01-11T06:20:00.000Z The Sun 2
## 13173 DailyMirror 2020-01-11T06:19:00.000Z The Mirror 5
## 13174 DailyMirror 2020-01-11T06:05:00.000Z The Mirror 3
## 13175 DailyMirror 2020-01-11T06:05:00.000Z The Mirror 2
## 13176 TheSun 2020-01-11T06:02:28.000Z The Sun 0
## 13177 DailyMirror 2020-01-11T06:01:06.000Z The Mirror 8
## 13178 EveningStandard 2020-01-11T06:00:34.000Z Evening Standard 0
## 13179 guardian 2020-01-11T06:00:32.000Z The Guardian 42
## 13180 thetimes 2020-01-11T06:00:31.000Z The Times 2
## 13181 Telegraph 2020-01-11T06:00:30.000Z The Telegraph 15
## 13182 TheSun 2020-01-11T06:00:00.000Z The Sun 5
## 13183 TheSun 2020-01-11T05:42:30.000Z The Sun 1
## 13184 EveningStandard 2020-01-11T05:40:33.000Z Evening Standard 1
## 13185 TheSun 2020-01-11T05:40:00.000Z The Sun 17
## 13186 DailyMirror 2020-01-11T05:32:00.000Z The Mirror 2
## 13187 TheSun 2020-01-11T05:23:03.000Z The Sun 3
## 13188 EveningStandard 2020-01-11T05:21:04.000Z Evening Standard 0
## 13189 TheSun 2020-01-11T05:20:00.000Z The Sun 14
## 13190 DailyMirror 2020-01-11T05:15:00.000Z The Mirror 6
## 13191 guardian 2020-01-11T05:05:24.000Z The Guardian 4
## 13192 DailyMirror 2020-01-11T05:03:19.000Z The Mirror 1
## 13193 TheSun 2020-01-11T05:02:28.000Z The Sun 1
## 13194 EveningStandard 2020-01-11T05:00:26.000Z Evening Standard 0
## 13195 TheSun 2020-01-11T05:00:00.000Z The Sun 6
## 13196 TheSun 2020-01-11T04:42:39.000Z The Sun 0
## 13197 EveningStandard 2020-01-11T04:40:39.000Z Evening Standard 0
## 13198 TheSun 2020-01-11T04:40:00.000Z The Sun 57
## 13199 DailyMirror 2020-01-11T04:23:00.000Z The Mirror 1
## 13200 TheSun 2020-01-11T04:22:51.000Z The Sun 4
## 13201 EveningStandard 2020-01-11T04:20:53.000Z Evening Standard 9
## 13202 TheSun 2020-01-11T04:20:00.000Z The Sun 41
## 13203 DailyMailUK 2020-01-11T04:12:09.000Z Daily Mail U.K. 69
## 13204 DailyMirror 2020-01-11T04:11:00.000Z The Mirror 2
## 13205 guardian 2020-01-11T04:08:02.000Z The Guardian 212
## 13206 DailyMirror 2020-01-11T04:07:46.000Z The Mirror 13
## 13207 TheSun 2020-01-11T04:02:58.000Z The Sun 2
## 13208 EveningStandard 2020-01-11T04:01:03.000Z Evening Standard 0
## 13209 TheSun 2020-01-11T04:00:00.000Z The Sun 11
## 13210 Telegraph 2020-01-11T03:58:44.000Z The Telegraph 70
## 13211 DailyMirror 2020-01-11T03:50:00.000Z The Mirror 11
## 13212 TheSun 2020-01-11T03:42:21.000Z The Sun 1
## 13213 EveningStandard 2020-01-11T03:40:20.000Z Evening Standard 2
## 13214 TheSun 2020-01-11T03:40:00.000Z The Sun 47
## 13215 DailyMirror 2020-01-11T03:30:00.000Z The Mirror 3
## 13216 DailyMirror 2020-01-11T03:29:00.000Z The Mirror 2
## 13217 guardian 2020-01-11T03:22:50.000Z The Guardian 13
## 13218 TheSun 2020-01-11T03:22:39.000Z The Sun 11
## 13219 DailyMirror 2020-01-11T03:20:52.000Z The Mirror 2
## 13220 EveningStandard 2020-01-11T03:20:39.000Z Evening Standard 0
## 13221 TheSun 2020-01-11T03:20:00.000Z The Sun 7
## 13222 DailyMirror 2020-01-11T03:16:00.000Z The Mirror 2
## 13223 thetimes 2020-01-11T03:09:53.000Z The Times 8
## 13224 TheSun 2020-01-11T03:02:57.000Z The Sun 2
## 13225 EveningStandard 2020-01-11T03:00:53.000Z Evening Standard 0
## 13226 TheSun 2020-01-11T03:00:00.000Z The Sun 27
## 13227 DailyMirror 2020-01-11T02:53:00.000Z The Mirror 4
## 13228 guardian 2020-01-11T02:48:10.000Z The Guardian 4
## 13229 thetimes 2020-01-11T02:43:11.000Z The Times 13
## 13230 TheSun 2020-01-11T02:42:11.000Z The Sun 2
## 13231 EveningStandard 2020-01-11T02:40:12.000Z Evening Standard 0
## 13232 TheSun 2020-01-11T02:40:00.000Z The Sun 4
## 13233 DailyMirror 2020-01-11T02:38:21.000Z The Mirror 6
## 13234 DailyMirror 2020-01-11T02:30:00.000Z The Mirror 3
## 13235 DailyMirror 2020-01-11T02:28:00.000Z The Mirror 2
## 13236 TheSun 2020-01-11T02:22:32.000Z The Sun 2
## 13237 EveningStandard 2020-01-11T02:20:33.000Z Evening Standard 0
## 13238 DailyMirror 2020-01-11T02:20:13.000Z The Mirror 2
## 13239 TheSun 2020-01-11T02:20:00.000Z The Sun 15
## 13240 thetimes 2020-01-11T02:16:38.000Z The Times 2
## 13241 DailyMirror 2020-01-11T02:12:22.000Z The Mirror 1
## 13242 DailyMirror 2020-01-11T02:04:00.000Z The Mirror 3
## 13243 TheSun 2020-01-11T02:02:43.000Z The Sun 3
## 13244 EveningStandard 2020-01-11T02:00:48.000Z Evening Standard 0
## 13245 TheSun 2020-01-11T02:00:00.000Z The Sun 13
## 13246 guardian 2020-01-11T01:56:45.000Z The Guardian 34
## 13247 DailyMirror 2020-01-11T01:53:00.000Z The Mirror 9
## 13248 TheSun 2020-01-11T01:42:59.000Z The Sun 2
## 13249 EveningStandard 2020-01-11T01:41:02.000Z Evening Standard 0
## 13250 DailyMirror 2020-01-11T01:40:56.000Z The Mirror 1
## 13251 DailyMirror 2020-01-11T01:40:22.000Z The Mirror 3
## 13252 TheSun 2020-01-11T01:40:00.000Z The Sun 35
## 13253 DailyMirror 2020-01-11T01:39:30.000Z The Mirror 4
## 13254 DailyMirror 2020-01-11T01:29:00.000Z The Mirror 1
## 13255 DailyMirror 2020-01-11T01:28:00.000Z The Mirror 0
## 13256 TheSun 2020-01-11T01:22:15.000Z The Sun 4
## 13257 EveningStandard 2020-01-11T01:20:17.000Z Evening Standard 0
## 13258 TheSun 2020-01-11T01:20:00.000Z The Sun 8
## 13259 TheSun 2020-01-11T01:02:36.000Z The Sun 2
## 13260 guardian 2020-01-11T01:02:19.000Z The Guardian 44
## 13261 EveningStandard 2020-01-11T01:00:37.000Z Evening Standard 1
## 13262 TheSun 2020-01-11T01:00:00.000Z The Sun 5
## 13263 DailyMirror 2020-01-11T01:00:00.000Z The Mirror 0
## 13264 DailyMirror 2020-01-11T00:53:00.000Z The Mirror 5
## 13265 DailyMirror 2020-01-11T00:50:00.000Z The Mirror 14
## 13266 TheSun 2020-01-11T00:42:54.000Z The Sun 4
## 13267 DailyMailUK 2020-01-11T00:42:39.000Z Daily Mail U.K. 24
## 13268 EveningStandard 2020-01-11T00:40:57.000Z Evening Standard 1
## 13269 TheSun 2020-01-11T00:40:00.000Z The Sun 8
## 13270 guardian 2020-01-11T00:35:19.000Z The Guardian 6
## 13271 guardian 2020-01-11T00:35:18.000Z The Guardian 39
## 13272 DailyMirror 2020-01-11T00:29:00.000Z The Mirror 1
## 13273 DailyMirror 2020-01-11T00:28:00.000Z The Mirror 0
## 13274 TheSun 2020-01-11T00:22:15.000Z The Sun 3
## 13275 EveningStandard 2020-01-11T00:20:17.000Z Evening Standard 1
## 13276 TheSun 2020-01-11T00:20:00.000Z The Sun 4
## 13277 DailyMirror 2020-01-11T00:18:22.000Z The Mirror 32
## 13278 DailyMirror 2020-01-11T00:17:04.000Z The Mirror 6
## 13279 guardian 2020-01-11T00:05:20.000Z The Guardian 26
## 13280 thetimes 2020-01-11T00:04:35.000Z The Times 1
## 13281 TheSun 2020-01-11T00:02:36.000Z The Sun 0
## 13282 Telegraph 2020-01-11T00:00:42.000Z The Telegraph 15
## 13283 EveningStandard 2020-01-11T00:00:38.000Z Evening Standard 1
## 13284 DailyMirror 2020-01-11T00:00:00.000Z The Mirror 0
## 13285 TheSun 2020-01-11T00:00:00.000Z The Sun 20
## 13286 DailyMailUK 2020-01-10T23:59:08.000Z Daily Mail U.K. 3
## 13287 DailyMirror 2020-01-10T23:56:00.000Z The Mirror 21
## 13288 DailyMirror 2020-01-10T23:52:00.000Z The Mirror 2
## 13289 DailyMirror 2020-01-10T23:50:00.000Z The Mirror 7
## 13290 TheSun 2020-01-10T23:50:00.000Z The Sun 7
## 13291 guardian 2020-01-10T23:49:50.000Z The Guardian 57
## 13292 DailyMirror 2020-01-10T23:49:00.000Z The Mirror 1
## 13293 DailyMirror 2020-01-10T23:47:00.000Z The Mirror 5
## 13294 DailyMirror 2020-01-10T23:46:28.000Z The Mirror 8
## 13295 Telegraph 2020-01-10T23:45:55.000Z The Telegraph 5
## 13296 DailyMirror 2020-01-10T23:45:00.000Z The Mirror 1
## 13297 TheSun 2020-01-10T23:42:55.000Z The Sun 3
## 13298 EveningStandard 2020-01-10T23:40:58.000Z Evening Standard 1
## 13299 DailyMirror 2020-01-10T23:40:28.000Z The Mirror 0
## 13300 TheSun 2020-01-10T23:40:00.000Z The Sun 21
## 13301 DailyMailUK 2020-01-10T23:39:02.000Z Daily Mail U.K. 1
## 13302 guardian 2020-01-10T23:36:14.000Z The Guardian 26
## 13303 DailyMirror 2020-01-10T23:35:33.000Z The Mirror 1
## 13304 DailyMirror 2020-01-10T23:34:00.000Z The Mirror 7
## 13305 Telegraph 2020-01-10T23:31:11.000Z The Telegraph 16
## 13306 MetroUK 2020-01-10T23:30:14.000Z Metro 2
## 13307 TheSun 2020-01-10T23:30:00.000Z The Sun 20
## 13308 thetimes 2020-01-10T23:26:14.000Z The Times 6
## 13309 TheSun 2020-01-10T23:22:17.000Z The Sun 1
## 13310 DailyMirror 2020-01-10T23:22:00.000Z The Mirror 2
## 13311 EveningStandard 2020-01-10T23:20:19.000Z Evening Standard 0
## 13312 DailyMailUK 2020-01-10T23:20:04.000Z Daily Mail U.K. 4
## 13313 TheSun 2020-01-10T23:20:00.000Z The Sun 77
## 13314 DailyMirror 2020-01-10T23:17:00.000Z The Mirror 3
## 13315 Telegraph 2020-01-10T23:15:25.000Z The Telegraph 4
## 13316 DailyMirror 2020-01-10T23:13:00.000Z The Mirror 3
## 13317 DailyMirror 2020-01-10T23:13:00.000Z The Mirror 1
## 13318 DailyMirror 2020-01-10T23:13:00.000Z The Mirror 3
## 13319 TheSun 2020-01-10T23:10:00.000Z The Sun 18
## 13320 guardian 2020-01-10T23:09:58.000Z The Guardian 3
## 13321 guardian 2020-01-10T23:09:57.000Z The Guardian 2
## 13322 DailyMirror 2020-01-10T23:09:40.000Z The Mirror 1
## 13323 DailyMirror 2020-01-10T23:08:10.000Z The Mirror 2
## 13324 DailyMirror 2020-01-10T23:06:00.000Z The Mirror 1
## 13325 TheSun 2020-01-10T23:02:37.000Z The Sun 3
## 13326 DailyMirror 2020-01-10T23:02:00.000Z The Mirror 1
## 13327 Telegraph 2020-01-10T23:00:56.000Z The Telegraph 2
## 13328 EveningStandard 2020-01-10T23:00:54.000Z Evening Standard 3
## 13329 MetroUK 2020-01-10T23:00:21.000Z Metro 10
## 13330 DailyMailUK 2020-01-10T23:00:02.000Z Daily Mail U.K. 12
## 13331 TheSun 2020-01-10T23:00:00.000Z The Sun 5
## 13332 DailyMirror 2020-01-10T22:56:00.000Z The Mirror 9
## 13333 DailyMirror 2020-01-10T22:55:00.000Z The Mirror 6
## 13334 TheSun 2020-01-10T22:53:00.000Z The Sun 2
## 13335 TheSun 2020-01-10T22:50:00.000Z The Sun 21
## 13336 DailyMirror 2020-01-10T22:50:00.000Z The Mirror 2
## 13337 DailyMirror 2020-01-10T22:50:00.000Z The Mirror 3
## 13338 DailyMirror 2020-01-10T22:49:00.000Z The Mirror 3
## 13339 Telegraph 2020-01-10T22:48:22.000Z The Telegraph 10
## 13340 DailyMirror 2020-01-10T22:47:00.000Z The Mirror 0
## 13341 Telegraph 2020-01-10T22:46:10.000Z The Telegraph 170
## 13342 DailyMailUK 2020-01-10T22:46:03.000Z Daily Mail U.K. 28
## 13343 thetimes 2020-01-10T22:45:11.000Z The Times 3
## 13344 guardian 2020-01-10T22:44:48.000Z The Guardian 2
## 13345 DailyMirror 2020-01-10T22:44:00.000Z The Mirror 1
## 13346 TheSun 2020-01-10T22:42:12.000Z The Sun 1
## 13347 DailyMailUK 2020-01-10T22:41:02.000Z Daily Mail U.K. 3
## 13348 EveningStandard 2020-01-10T22:40:13.000Z Evening Standard 1
## 13349 TheSun 2020-01-10T22:40:00.000Z The Sun 7
## 13350 guardian 2020-01-10T22:39:15.000Z The Guardian 33
## 13351 DailyMirror 2020-01-10T22:39:00.000Z The Mirror 2
## 13352 DailyMirror 2020-01-10T22:36:00.000Z The Mirror 1
## 13353 DailyMirror 2020-01-10T22:35:02.000Z The Mirror 4
## 13354 DailyMailUK 2020-01-10T22:34:28.000Z Daily Mail U.K. 10
## 13355 DailyMirror 2020-01-10T22:34:00.000Z The Mirror 7
## 13356 DailyMailUK 2020-01-10T22:32:50.000Z Daily Mail U.K. 41
## 13357 DailyMirror 2020-01-10T22:32:47.000Z The Mirror 2
## 13358 DailyMirror 2020-01-11T22:04:57.000Z The Mirror 4
## 13359 DailyMirror 2020-01-11T22:04:15.000Z The Mirror 13
## 13360 DailyMirror 2020-01-11T22:03:52.000Z The Mirror 12
## 13361 DailyMirror 2020-01-11T22:03:19.000Z The Mirror 0
## 13362 EveningStandard 2020-01-11T22:00:37.000Z Evening Standard 0
## 13363 DailyMailUK 2020-01-11T22:00:11.000Z Daily Mail U.K. 7
## 13364 MetroUK 2020-01-11T22:00:05.000Z Metro 1
## 13365 TheSun 2020-01-11T22:00:02.000Z The Sun 3
## 13366 guardian 2020-01-11T22:00:00.000Z The Guardian 3
## 13367 thetimes 2020-01-11T21:59:41.000Z The Times 6
## 13368 DailyMirror 2020-01-11T21:57:22.000Z The Mirror 8
## 13369 EveningStandard 2020-01-11T21:50:37.000Z Evening Standard 2
## 13370 Telegraph 2020-01-11T21:50:19.000Z The Telegraph 22
## 13371 TheSun 2020-01-11T21:50:00.000Z The Sun 20
## 13372 DailyMirror 2020-01-11T21:48:24.000Z The Mirror 6
## 13373 Telegraph 2020-01-11T21:48:04.000Z The Telegraph 22
## 13374 DailyMailUK 2020-01-11T21:46:04.000Z Daily Mail U.K. 12
## 13375 DailyMirror 2020-01-11T21:44:47.000Z The Mirror 4
## 13376 guardian 2020-01-11T21:44:23.000Z The Guardian 23
## 13377 DailyMirror 2020-01-11T21:44:00.000Z The Mirror 3
## 13378 EveningStandard 2020-01-11T21:40:36.000Z Evening Standard 0
## 13379 TheSun 2020-01-11T21:40:00.000Z The Sun 27
## 13380 DailyMirror 2020-01-11T21:39:43.000Z The Mirror 4
## 13381 guardian 2020-01-11T21:39:36.000Z The Guardian 56
## 13382 DailyMirror 2020-01-11T21:38:58.000Z The Mirror 15
## 13383 DailyMirror 2020-01-11T21:35:49.000Z The Mirror 3
## 13384 Telegraph 2020-01-11T21:35:11.000Z The Telegraph 20
## 13385 thetimes 2020-01-11T21:34:44.000Z The Times 8
## 13386 TheSun 2020-01-11T21:32:47.000Z The Sun 4
## 13387 Telegraph 2020-01-11T21:32:00.000Z The Telegraph 7
## 13388 guardian 2020-01-11T21:30:14.000Z The Guardian 19
## 13389 MetroUK 2020-01-11T21:30:14.000Z Metro 1
## 13390 TheSun 2020-01-11T21:30:00.000Z The Sun 24
## 13391 DailyMailUK 2020-01-11T21:29:04.000Z Daily Mail U.K. 17
## 13392 TheSun 2020-01-11T21:27:23.000Z The Sun 5
## 13393 DailyMirror 2020-01-11T21:24:14.000Z The Mirror 8
## 13394 TheSun 2020-01-11T21:22:54.000Z The Sun 1
## 13395 EveningStandard 2020-01-11T21:20:54.000Z Evening Standard 1
## 13396 TheSun 2020-01-11T21:20:00.000Z The Sun 13
## 13397 Telegraph 2020-01-11T21:19:41.000Z The Telegraph 7
## 13398 DailyMirror 2020-01-11T21:16:00.000Z The Mirror 1
## 13399 DailyMailUK 2020-01-11T21:15:07.000Z Daily Mail U.K. 1
## 13400 TheSun 2020-01-11T21:13:04.000Z The Sun 6
## 13401 DailyMirror 2020-01-11T21:13:00.000Z The Mirror 0
## 13402 guardian 2020-01-11T21:10:07.000Z The Guardian 11
## 13403 TheSun 2020-01-11T21:10:00.000Z The Sun 8
## 13404 DailyMirror 2020-01-11T21:09:21.000Z The Mirror 5
## 13405 TheSun 2020-01-11T21:07:45.000Z The Sun 20
## 13406 DailyMirror 2020-01-11T21:05:15.000Z The Mirror 5
## 13407 Telegraph 2020-01-11T21:03:50.000Z The Telegraph 17
## 13408 TheSun 2020-01-11T21:03:45.000Z The Sun 15
## 13409 EveningStandard 2020-01-11T21:03:26.000Z Evening Standard 6
## 13410 TheSun 2020-01-11T21:02:13.000Z The Sun 1
## 13411 DailyMirror 2020-01-11T21:02:07.000Z The Mirror 17
## 13412 guardian 2020-01-11T21:01:10.000Z The Guardian 31
## 13413 EveningStandard 2020-01-11T21:00:16.000Z Evening Standard 4
## 13414 MetroUK 2020-01-11T21:00:11.000Z Metro 2
## 13415 DailyMirror 2020-01-11T21:00:06.000Z The Mirror 2
## 13416 DailyMailUK 2020-01-11T21:00:04.000Z Daily Mail U.K. 1
## 13417 TheSun 2020-01-11T21:00:00.000Z The Sun 3
## 13418 DailyMirror 2020-01-11T21:00:00.000Z The Mirror 1
## 13419 DailyMirror 2020-01-11T20:58:15.000Z The Mirror 25
## 13420 DailyMirror 2020-01-11T20:56:15.000Z The Mirror 2
## 13421 DailyMirror 2020-01-11T20:56:02.000Z The Mirror 3
## 13422 DailyMirror 2020-01-11T20:53:05.000Z The Mirror 5
## 13423 TheSun 2020-01-11T20:52:24.000Z The Sun 3
## 13424 DailyMirror 2020-01-11T20:52:00.000Z The Mirror 2
## 13425 guardian 2020-01-11T20:51:25.000Z The Guardian 3
## 13426 TheSun 2020-01-11T20:50:00.000Z The Sun 26
## 13427 DailyMirror 2020-01-11T20:46:10.000Z The Mirror 4
## 13428 DailyMailUK 2020-01-11T20:45:06.000Z Daily Mail U.K. 1
## 13429 DailyMirror 2020-01-11T20:44:34.000Z The Mirror 4
## 13430 guardian 2020-01-11T20:43:33.000Z The Guardian 1
## 13431 TheSun 2020-01-11T20:42:33.000Z The Sun 1
## 13432 TheSun 2020-01-11T20:41:27.000Z The Sun 1
## 13433 EveningStandard 2020-01-11T20:40:34.000Z Evening Standard 0
## 13434 TheSun 2020-01-11T20:40:00.000Z The Sun 6
## 13435 DailyMirror 2020-01-11T20:36:00.000Z The Mirror 2
## 13436 thetimes 2020-01-11T20:34:45.000Z The Times 4
## 13437 guardian 2020-01-11T20:34:01.000Z The Guardian 10
## 13438 guardian 2020-01-11T20:34:00.000Z The Guardian 2
## 13439 guardian 2020-01-11T20:33:59.000Z The Guardian 2
## 13440 DailyMirror 2020-01-11T20:33:08.000Z The Mirror 1
## 13441 DailyMirror 2020-01-11T20:33:00.000Z The Mirror 5
## 13442 DailyMirror 2020-01-11T20:32:45.000Z The Mirror 1
## 13443 TheSun 2020-01-11T20:32:44.000Z The Sun 1
## 13444 guardian 2020-01-11T20:32:44.000Z The Guardian 3
## 13445 DailyMirror 2020-01-11T20:32:00.000Z The Mirror 3
## 13446 DailyMirror 2020-01-11T20:30:14.000Z The Mirror 8
## 13447 EveningStandard 2020-01-11T20:30:11.000Z Evening Standard 2
## 13448 MetroUK 2020-01-11T20:30:08.000Z Metro 0
## 13449 DailyMailUK 2020-01-11T20:30:02.000Z Daily Mail U.K. 0
## 13450 DailyMirror 2020-01-11T20:30:00.000Z The Mirror 5
## 13451 TheSun 2020-01-11T20:30:00.000Z The Sun 18
## 13452 guardian 2020-01-11T20:23:52.000Z The Guardian 25
## 13453 TheSun 2020-01-11T20:22:54.000Z The Sun 0
## 13454 EveningStandard 2020-01-11T20:20:56.000Z Evening Standard 3
## 13455 TheSun 2020-01-11T20:20:00.000Z The Sun 8
## 13456 TheSun 2020-01-11T20:17:18.000Z The Sun 20
## 13457 DailyMirror 2020-01-11T20:16:00.000Z The Mirror 1
## 13458 DailyMailUK 2020-01-11T20:15:04.000Z Daily Mail U.K. 2
## 13459 guardian 2020-01-11T20:15:02.000Z The Guardian 36
## 13460 DailyMirror 2020-01-11T20:15:00.000Z The Mirror 1
## 13461 DailyMirror 2020-01-11T20:13:39.000Z The Mirror 14
## 13462 TheSun 2020-01-11T20:12:58.000Z The Sun 1
## 13463 TheSun 2020-01-11T20:10:00.000Z The Sun 27
## 13464 guardian 2020-01-11T20:06:16.000Z The Guardian 4
## 13465 guardian 2020-01-11T20:06:15.000Z The Guardian 3
## 13466 guardian 2020-01-11T20:04:18.000Z The Guardian 12
## 13467 DailyMirror 2020-01-11T20:04:00.000Z The Mirror 2
## 13468 TheSun 2020-01-11T20:02:21.000Z The Sun 3
## 13469 DailyMirror 2020-01-11T20:01:31.000Z The Mirror 3
## 13470 Telegraph 2020-01-11T20:00:29.000Z The Telegraph 5
## 13471 EveningStandard 2020-01-11T20:00:22.000Z Evening Standard 0
## 13472 DailyMailUK 2020-01-11T20:00:07.000Z Daily Mail U.K. 5
## 13473 MetroUK 2020-01-11T20:00:03.000Z Metro 1
## 13474 TheSun 2020-01-11T20:00:00.000Z The Sun 0
## 13475 DailyMirror 2020-01-11T19:58:45.000Z The Mirror 9
## 13476 guardian 2020-01-11T19:54:29.000Z The Guardian 11
## 13477 thetimes 2020-01-11T19:53:31.000Z The Times 5
## 13478 DailyMirror 2020-01-11T19:53:09.000Z The Mirror 5
## 13479 TheSun 2020-01-11T19:52:31.000Z The Sun 3
## 13480 DailyMirror 2020-01-11T19:52:00.000Z The Mirror 5
## 13481 EveningStandard 2020-01-11T19:51:35.000Z Evening Standard 0
## 13482 TheSun 2020-01-11T19:50:00.000Z The Sun 6
## 13483 DailyMirror 2020-01-11T19:44:00.000Z The Mirror 9
## 13484 DailyMailUK 2020-01-11T19:43:58.000Z Daily Mail U.K. 6
## 13485 TheSun 2020-01-11T19:42:37.000Z The Sun 10
## 13486 guardian 2020-01-11T19:42:30.000Z The Guardian 3
## 13487 EveningStandard 2020-01-11T19:40:40.000Z Evening Standard 0
## 13488 DailyMirror 2020-01-11T19:40:00.000Z The Mirror 8
## 13489 TheSun 2020-01-11T19:40:00.000Z The Sun 15
## 13490 guardian 2020-01-11T19:35:46.000Z The Guardian 11
## 13491 Telegraph 2020-01-11T19:34:14.000Z The Telegraph 148
## 13492 TheSun 2020-01-11T19:32:49.000Z The Sun 2
## 13493 TheSun 2020-01-11T19:32:47.000Z The Sun 1
## 13494 DailyMirror 2020-01-11T19:30:28.000Z The Mirror 7
## 13495 MetroUK 2020-01-11T19:30:06.000Z Metro 3
## 13496 TheSun 2020-01-11T19:30:00.000Z The Sun 12
## 13497 DailyMirror 2020-01-11T19:28:45.000Z The Mirror 2
## 13498 thetimes 2020-01-11T19:26:53.000Z The Times 2
## 13499 Telegraph 2020-01-11T19:26:52.000Z The Telegraph 4
## 13500 TheSun 2020-01-11T19:25:14.000Z The Sun 7
## 13501 guardian 2020-01-11T19:24:54.000Z The Guardian 41
## 13502 TheSun 2020-01-11T19:22:58.000Z The Sun 1
## 13503 DailyMailUK 2020-01-11T19:22:13.000Z Daily Mail U.K. 19
## 13504 EveningStandard 2020-01-11T19:21:00.000Z Evening Standard 1
## 13505 TheSun 2020-01-11T19:20:00.000Z The Sun 22
## 13506 DailyMirror 2020-01-11T19:17:29.000Z The Mirror 11
## 13507 DailyMirror 2020-01-11T19:15:00.000Z The Mirror 2
## 13508 guardian 2020-01-11T19:13:20.000Z The Guardian 24
## 13509 guardian 2020-01-11T19:13:18.000Z The Guardian 10
## 13510 DailyMirror 2020-01-11T19:13:00.000Z The Mirror 1
## 13511 TheSun 2020-01-11T19:12:08.000Z The Sun 2
## 13512 TheSun 2020-01-11T19:10:00.000Z The Sun 21
## 13513 guardian 2020-01-11T19:07:14.000Z The Guardian 7
## 13514 TheSun 2020-01-11T19:03:42.000Z The Sun 3
## 13515 DailyMailUK 2020-01-11T19:01:05.000Z Daily Mail U.K. 8
## 13516 DailyMirror 2020-01-11T19:00:28.000Z The Mirror 3
## 13517 EveningStandard 2020-01-11T19:00:19.000Z Evening Standard 0
## 13518 MetroUK 2020-01-11T19:00:15.000Z Metro 7
## 13519 TheSun 2020-01-11T19:00:00.000Z The Sun 1
## 13520 DailyMirror 2020-01-11T18:57:00.000Z The Mirror 3
## 13521 guardian 2020-01-11T18:56:25.000Z The Guardian 19
## 13522 Telegraph 2020-01-11T18:53:29.000Z The Telegraph 29
## 13523 DailyMirror 2020-01-11T18:53:27.000Z The Mirror 2
## 13524 TheSun 2020-01-11T18:52:29.000Z The Sun 2
## 13525 EveningStandard 2020-01-11T18:52:28.000Z Evening Standard 0
## 13526 DailyMirror 2020-01-11T18:52:00.000Z The Mirror 7
## 13527 TheSun 2020-01-11T18:50:00.000Z The Sun 3
## 13528 guardian 2020-01-11T18:44:15.000Z The Guardian 12
## 13529 guardian 2020-01-11T18:44:14.000Z The Guardian 5
## 13530 guardian 2020-01-11T18:44:12.000Z The Guardian 10
## 13531 TheSun 2020-01-11T18:42:38.000Z The Sun 4
## 13532 EveningStandard 2020-01-11T18:40:38.000Z Evening Standard 0
## 13533 TheSun 2020-01-11T18:40:00.000Z The Sun 10
## 13534 DailyMirror 2020-01-11T18:36:49.000Z The Mirror 3
## 13535 TheSun 2020-01-11T18:32:50.000Z The Sun 11
## 13536 DailyMirror 2020-01-11T18:31:00.000Z The Mirror 1
## 13537 EveningStandard 2020-01-11T18:30:52.000Z Evening Standard 0
## 13538 MetroUK 2020-01-11T18:30:08.000Z Metro 4
## 13539 TheSun 2020-01-11T18:30:00.000Z The Sun 1
## 13540 DailyMirror 2020-01-11T18:28:40.000Z The Mirror 7
## 13541 guardian 2020-01-11T18:23:56.000Z The Guardian 23
## 13542 TheSun 2020-01-11T18:23:00.000Z The Sun 5
## 13543 DailyMirror 2020-01-11T18:22:41.000Z The Mirror 6
## 13544 EveningStandard 2020-01-11T18:21:01.000Z Evening Standard 0
## 13545 Telegraph 2020-01-11T18:20:04.000Z The Telegraph 37
## 13546 TheSun 2020-01-11T18:20:00.000Z The Sun 15
## 13547 DailyMirror 2020-01-11T18:17:29.000Z The Mirror 0
## 13548 DailyMailUK 2020-01-11T18:15:06.000Z Daily Mail U.K. 1
## 13549 DailyMirror 2020-01-11T18:15:06.000Z The Mirror 4
## 13550 Telegraph 2020-01-11T18:14:57.000Z The Telegraph 289
## 13551 DailyMirror 2020-01-11T18:13:37.000Z The Mirror 3
## 13552 guardian 2020-01-11T18:13:17.000Z The Guardian 52
## 13553 guardian 2020-01-11T18:13:16.000Z The Guardian 6
## 13554 guardian 2020-01-11T18:13:14.000Z The Guardian 1
## 13555 guardian 2020-01-11T18:13:13.000Z The Guardian 7
## 13556 TheSun 2020-01-11T18:12:10.000Z The Sun 1
## 13557 EveningStandard 2020-01-11T18:11:09.000Z Evening Standard 0
## 13558 TheSun 2020-01-11T18:10:00.000Z The Sun 23
## 13559 guardian 2020-01-11T18:05:17.000Z The Guardian 22
## 13560 DailyMirror 2020-01-11T18:04:00.000Z The Mirror 1
## 13561 Telegraph 2020-01-11T18:02:53.000Z The Telegraph 15
## 13562 Telegraph 2020-01-11T18:02:44.000Z The Telegraph 22
## 13563 TheSun 2020-01-11T18:02:19.000Z The Sun 20
## 13564 Telegraph 2020-01-11T18:00:48.000Z The Telegraph 8
## 13565 EveningStandard 2020-01-11T18:00:32.000Z Evening Standard 3
## 13566 MetroUK 2020-01-11T18:00:08.000Z Metro 0
## 13567 DailyMailUK 2020-01-11T18:00:03.000Z Daily Mail U.K. 1
## 13568 Telegraph 2020-01-11T18:00:03.000Z The Telegraph 5
## 13569 DailyMirror 2020-01-11T18:00:01.000Z The Mirror 7
## 13570 TheSun 2020-01-11T18:00:00.000Z The Sun 10
## 13571 thetimes 2020-01-11T17:56:38.000Z The Times 2
## 13572 DailyMirror 2020-01-11T17:55:56.000Z The Mirror 3
## 13573 guardian 2020-01-11T17:53:46.000Z The Guardian 34
## 13574 TheSun 2020-01-11T17:52:36.000Z The Sun 2
## 13575 DailyMirror 2020-01-11T17:52:13.000Z The Mirror 5
## 13576 DailyMirror 2020-01-11T17:51:33.000Z The Mirror 5
## 13577 TheSun 2020-01-11T17:50:00.000Z The Sun 11
## 13578 DailyMirror 2020-01-11T17:49:53.000Z The Mirror 4
## 13579 Telegraph 2020-01-11T17:49:43.000Z The Telegraph 7
## 13580 TheSun 2020-01-11T17:47:40.000Z The Sun 2
## 13581 DailyMirror 2020-01-11T17:45:18.000Z The Mirror 6
## 13582 DailyMailUK 2020-01-11T17:45:09.000Z Daily Mail U.K. 5
## 13583 TheSun 2020-01-11T17:42:42.000Z The Sun 5
## 13584 guardian 2020-01-11T17:42:36.000Z The Guardian 0
## 13585 guardian 2020-01-11T17:42:34.000Z The Guardian 21
## 13586 guardian 2020-01-11T17:42:33.000Z The Guardian 1
## 13587 guardian 2020-01-11T17:42:31.000Z The Guardian 0
## 13588 guardian 2020-01-11T17:42:30.000Z The Guardian 0
## 13589 guardian 2020-01-11T17:42:28.000Z The Guardian 1
## 13590 guardian 2020-01-11T17:41:42.000Z The Guardian 1
## 13591 DailyMirror 2020-01-11T17:40:55.000Z The Mirror 9
## 13592 EveningStandard 2020-01-11T17:40:42.000Z Evening Standard 1
## 13593 TheSun 2020-01-11T17:40:00.000Z The Sun 16
## 13594 TheSun 2020-01-11T17:37:46.000Z The Sun 17
## 13595 DailyMirror 2020-01-11T17:37:03.000Z The Mirror 4
## 13596 DailyMirror 2020-01-11T17:33:29.000Z The Mirror 7
## 13597 TheSun 2020-01-11T17:32:51.000Z The Sun 1
## 13598 guardian 2020-01-11T17:30:58.000Z The Guardian 9
## 13599 MetroUK 2020-01-11T17:30:05.000Z Metro 18
## 13600 DailyMailUK 2020-01-11T17:30:04.000Z Daily Mail U.K. 5
## 13601 TheSun 2020-01-11T17:30:00.000Z The Sun 9
## 13602 TheSun 2020-01-11T17:27:57.000Z The Sun 3
## 13603 TheSun 2020-01-11T17:27:56.000Z The Sun 3
## 13604 Telegraph 2020-01-11T17:26:53.000Z The Telegraph 39
## 13605 thetimes 2020-01-11T17:25:01.000Z The Times 3
## 13606 Telegraph 2020-01-11T17:24:12.000Z The Telegraph 5
## 13607 TheSun 2020-01-11T17:23:03.000Z The Sun 33
## 13608 guardian 2020-01-11T17:22:02.000Z The Guardian 13
## 13609 EveningStandard 2020-01-11T17:21:03.000Z Evening Standard 0
## 13610 DailyMirror 2020-01-11T17:21:00.000Z The Mirror 1
## 13611 TheSun 2020-01-11T17:20:00.000Z The Sun 21
## 13612 DailyMirror 2020-01-11T17:19:29.000Z The Mirror 5
## 13613 TheSun 2020-01-11T17:17:06.000Z The Sun 2
## 13614 DailyMirror 2020-01-11T17:16:10.000Z The Mirror 2
## 13615 Telegraph 2020-01-11T17:15:11.000Z The Telegraph 23
## 13616 DailyMailUK 2020-01-11T17:15:04.000Z Daily Mail U.K. 5
## 13617 guardian 2020-01-11T17:14:55.000Z The Guardian 25
## 13618 guardian 2020-01-11T17:14:54.000Z The Guardian 4
## 13619 DailyMirror 2020-01-11T17:14:00.000Z The Mirror 3
## 13620 TheSun 2020-01-11T17:12:53.000Z The Sun 1
## 13621 TheSun 2020-01-11T17:10:00.000Z The Sun 5
## 13622 EveningStandard 2020-01-11T17:09:55.000Z Evening Standard 0
## 13623 guardian 2020-01-11T17:07:59.000Z The Guardian 19
## 13624 TheSun 2020-01-11T17:07:59.000Z The Sun 0
## 13625 DailyMirror 2020-01-11T17:04:00.000Z The Mirror 0
## 13626 TheSun 2020-01-11T17:03:05.000Z The Sun 2
## 13627 guardian 2020-01-11T17:01:14.000Z The Guardian 76
## 13628 EveningStandard 2020-01-11T17:00:09.000Z Evening Standard 3
## 13629 DailyMailUK 2020-01-11T17:00:06.000Z Daily Mail U.K. 0
## 13630 MetroUK 2020-01-11T17:00:05.000Z Metro 3
## 13631 TheSun 2020-01-11T17:00:01.000Z The Sun 5
## 13632 guardian 2020-01-11T17:00:00.000Z The Guardian 3
## 13633 TheSun 2020-01-11T16:57:12.000Z The Sun 2
## 13634 DailyMirror 2020-01-11T16:55:07.000Z The Mirror 3
## 13635 guardian 2020-01-11T16:54:13.000Z The Guardian 4
## 13636 DailyMirror 2020-01-11T16:54:00.000Z The Mirror 0
## 13637 DailyMirror 2020-01-11T16:53:24.000Z The Mirror 12
## 13638 TheSun 2020-01-11T16:52:59.000Z The Sun 0
## 13639 MetroUK 2020-01-11T16:50:48.000Z Metro 2
## 13640 TheSun 2020-01-11T16:50:00.000Z The Sun 11
## 13641 MetroUK 2020-01-11T16:46:17.000Z Metro 1
## 13642 guardian 2020-01-11T16:45:17.000Z The Guardian 4
## 13643 guardian 2020-01-11T16:45:16.000Z The Guardian 1
## 13644 guardian 2020-01-11T16:45:16.000Z The Guardian 8
## 13645 DailyMailUK 2020-01-11T16:45:04.000Z Daily Mail U.K. 4
## 13646 TheSun 2020-01-11T16:43:04.000Z The Sun 3
## 13647 TheSun 2020-01-11T16:42:25.000Z The Sun 3
## 13648 DailyMailUK 2020-01-11T16:42:22.000Z Daily Mail U.K. 231
## 13649 EveningStandard 2020-01-11T16:41:06.000Z Evening Standard 3
## 13650 TheSun 2020-01-11T16:40:00.000Z The Sun 26
## 13651 DailyMirror 2020-01-11T16:40:00.000Z The Mirror 4
## 13652 Telegraph 2020-01-11T16:39:52.000Z The Telegraph 20
## 13653 TheSun 2020-01-11T16:37:36.000Z The Sun 3
## 13654 TheSun 2020-01-11T16:37:12.000Z The Sun 3
## 13655 guardian 2020-01-11T16:36:10.000Z The Guardian 11
## 13656 Telegraph 2020-01-11T16:33:51.000Z The Telegraph 123
## 13657 TheSun 2020-01-11T16:33:32.000Z The Sun 5
## 13658 TheSun 2020-01-11T16:32:14.000Z The Sun 6
## 13659 MetroUK 2020-01-11T16:30:04.000Z Metro 241
## 13660 DailyMailUK 2020-01-11T16:30:04.000Z Daily Mail U.K. 0
## 13661 TheSun 2020-01-11T16:30:00.000Z The Sun 5
## 13662 DailyMirror 2020-01-11T16:29:00.000Z The Mirror 1
## 13663 DailyMirror 2020-01-11T16:28:17.000Z The Mirror 0
## 13664 Telegraph 2020-01-11T16:27:48.000Z The Telegraph 8
## 13665 TheSun 2020-01-11T16:27:19.000Z The Sun 4
## 13666 DailyMirror 2020-01-11T16:27:15.000Z The Mirror 2
## 13667 guardian 2020-01-11T16:26:20.000Z The Guardian 9
## 13668 DailyMirror 2020-01-11T16:25:20.000Z The Mirror 4
## 13669 DailyMirror 2020-01-11T16:24:20.000Z The Mirror 7
## 13670 TheSun 2020-01-11T16:22:25.000Z The Sun 3
## 13671 DailyMirror 2020-01-11T16:21:00.000Z The Mirror 3
## 13672 thetimes 2020-01-11T16:20:30.000Z The Times 8
## 13673 EveningStandard 2020-01-11T16:20:26.000Z Evening Standard 0
## 13674 TheSun 2020-01-11T16:20:00.000Z The Sun 61
## 13675 Telegraph 2020-01-11T16:17:39.000Z The Telegraph 14
## 13676 TheSun 2020-01-11T16:17:30.000Z The Sun 5
## 13677 Telegraph 2020-01-11T16:16:44.000Z The Telegraph 4
## 13678 Telegraph 2020-01-11T16:16:35.000Z The Telegraph 7
## 13679 guardian 2020-01-11T16:16:24.000Z The Guardian 8
## 13680 guardian 2020-01-11T16:16:24.000Z The Guardian 7
## 13681 guardian 2020-01-11T16:16:23.000Z The Guardian 8
## 13682 guardian 2020-01-11T16:16:22.000Z The Guardian 3
## 13683 guardian 2020-01-11T16:16:21.000Z The Guardian 8
## 13684 DailyMirror 2020-01-11T16:16:00.000Z The Mirror 0
## 13685 guardian 2020-01-11T16:15:19.000Z The Guardian 16
## 13686 DailyMailUK 2020-01-11T16:15:03.000Z Daily Mail U.K. 1
## 13687 DailyMirror 2020-01-11T16:14:34.000Z The Mirror 3
## 13688 Telegraph 2020-01-11T16:13:48.000Z The Telegraph 5
## 13689 TheSun 2020-01-11T16:12:21.000Z The Sun 23
## 13690 TheSun 2020-01-11T16:10:00.000Z The Sun 5
## 13691 DailyMailUK 2020-01-11T16:08:42.000Z Daily Mail U.K. 1
## 13692 TheSun 2020-01-11T16:07:20.000Z The Sun 4
## 13693 DailyMirror 2020-01-11T16:07:00.000Z The Mirror 0
## 13694 guardian 2020-01-11T16:05:28.000Z The Guardian 8
## 13695 DailyMailUK 2020-01-11T16:04:48.000Z Daily Mail U.K. 8
## 13696 TheSun 2020-01-11T16:02:31.000Z The Sun 2
## 13697 Telegraph 2020-01-11T16:00:26.000Z The Telegraph 1
## 13698 EveningStandard 2020-01-11T16:00:22.000Z Evening Standard 0
## 13699 TheSun 2020-01-11T16:00:20.000Z The Sun 9
## 13700 MetroUK 2020-01-11T16:00:13.000Z Metro 16
## 13701 DailyMailUK 2020-01-11T16:00:07.000Z Daily Mail U.K. 3
## 13702 TheSun 2020-01-11T16:00:00.000Z The Sun 3
## 13703 guardian 2020-01-11T15:54:27.000Z The Guardian 58
## 13704 DailyMirror 2020-01-11T15:54:00.000Z The Mirror 0
## 13705 DailyMirror 2020-01-11T15:53:10.000Z The Mirror 5
## 13706 TheSun 2020-01-11T15:52:25.000Z The Sun 1
## 13707 DailyMirror 2020-01-11T15:52:00.000Z The Mirror 1
## 13708 DailyMirror 2020-01-11T15:51:00.000Z The Mirror 0
## 13709 TheSun 2020-01-11T15:50:00.000Z The Sun 14
## 13710 guardian 2020-01-11T15:49:30.000Z The Guardian 30
## 13711 guardian 2020-01-11T15:49:28.000Z The Guardian 51
## 13712 guardian 2020-01-11T15:49:21.000Z The Guardian 41
## 13713 DailyMirror 2020-01-11T15:47:00.000Z The Mirror 4
## 13714 DailyMailUK 2020-01-11T15:45:06.000Z Daily Mail U.K. 3
## 13715 guardian 2020-01-11T15:44:32.000Z The Guardian 10
## 13716 TheSun 2020-01-11T15:42:36.000Z The Sun 5
## 13717 EveningStandard 2020-01-11T15:40:37.000Z Evening Standard 0
## 13718 TheSun 2020-01-11T15:40:00.000Z The Sun 9
## 13719 DailyMirror 2020-01-11T15:37:00.000Z The Mirror 1
## 13720 TheSun 2020-01-11T15:35:11.000Z The Sun 2
## 13721 TheSun 2020-01-11T15:32:44.000Z The Sun 4
## 13722 DailyMailUK 2020-01-11T15:31:03.000Z Daily Mail U.K. 3
## 13723 Telegraph 2020-01-11T15:30:52.000Z The Telegraph 14
## 13724 MetroUK 2020-01-11T15:30:14.000Z Metro 2
## 13725 guardian 2020-01-11T15:30:00.000Z The Guardian 4
## 13726 TheSun 2020-01-11T15:30:00.000Z The Sun 24
## 13727 MetroUK 2020-01-11T15:29:44.000Z Metro 1
## 13728 DailyMirror 2020-01-11T15:29:00.000Z The Mirror 2
## 13729 DailyMirror 2020-01-11T15:25:01.000Z The Mirror 1
## 13730 TheSun 2020-01-11T15:22:54.000Z The Sun 21
## 13731 EveningStandard 2020-01-11T15:20:54.000Z Evening Standard 2
## 13732 TheSun 2020-01-11T15:20:16.000Z The Sun 5
## 13733 TheSun 2020-01-11T15:20:00.000Z The Sun 7
## 13734 DailyMirror 2020-01-11T15:15:00.000Z The Mirror 2
## 13735 DailyMailUK 2020-01-11T15:14:04.000Z Daily Mail U.K. 3
## 13736 TheSun 2020-01-11T15:12:48.000Z The Sun 4
## 13737 guardian 2020-01-11T15:12:48.000Z The Guardian 17
## 13738 TheSun 2020-01-11T15:10:00.000Z The Sun 14
## 13739 DailyMirror 2020-01-11T15:04:00.000Z The Mirror 3
## 13740 TheSun 2020-01-11T15:02:59.000Z The Sun 8
## 13741 Telegraph 2020-01-11T15:01:09.000Z The Telegraph 6
## 13742 EveningStandard 2020-01-11T15:01:03.000Z Evening Standard 1
## 13743 MetroUK 2020-01-11T15:00:17.000Z Metro 9
## 13744 TheSun 2020-01-11T15:00:01.000Z The Sun 9
## 13745 TheSun 2020-01-11T15:00:00.000Z The Sun 1
## 13746 DailyMailUK 2020-01-11T14:59:07.000Z Daily Mail U.K. 3
## 13747 DailyMirror 2020-01-11T14:53:00.000Z The Mirror 4
## 13748 guardian 2020-01-11T14:52:24.000Z The Guardian 2
## 13749 guardian 2020-01-11T14:52:22.000Z The Guardian 12
## 13750 guardian 2020-01-11T14:52:21.000Z The Guardian 7
## 13751 TheSun 2020-01-11T14:52:09.000Z The Sun 2
## 13752 DailyMirror 2020-01-11T14:51:00.000Z The Mirror 3
## 13753 TheSun 2020-01-11T14:50:00.000Z The Sun 2
## 13754 DailyMirror 2020-01-11T14:46:00.000Z The Mirror 0
## 13755 Telegraph 2020-01-11T14:45:21.000Z The Telegraph 7
## 13756 DailyMailUK 2020-01-11T14:44:05.000Z Daily Mail U.K. 16
## 13757 DailyMirror 2020-01-11T14:43:08.000Z The Mirror 3
## 13758 TheSun 2020-01-11T14:42:20.000Z The Sun 2
## 13759 thetimes 2020-01-11T14:40:23.000Z The Times 1
## 13760 EveningStandard 2020-01-11T14:40:21.000Z Evening Standard 0
## 13761 TheSun 2020-01-11T14:40:00.000Z The Sun 20
## 13762 DailyMirror 2020-01-11T14:38:46.000Z The Mirror 11
## 13763 TheSun 2020-01-11T14:35:33.000Z The Sun 1
## 13764 DailyMirror 2020-01-11T14:34:00.000Z The Mirror 1
## 13765 DailyMirror 2020-01-11T14:33:55.000Z The Mirror 3
## 13766 DailyMirror 2020-01-11T14:33:14.000Z The Mirror 5
## 13767 TheSun 2020-01-11T14:32:36.000Z The Sun 0
## 13768 guardian 2020-01-11T14:32:36.000Z The Guardian 3
## 13769 DailyMirror 2020-01-11T14:31:21.000Z The Mirror 6
## 13770 DailyMirror 2020-01-11T14:31:19.000Z The Mirror 2
## 13771 Telegraph 2020-01-11T14:30:35.000Z The Telegraph 116
## 13772 Telegraph 2020-01-11T14:30:34.000Z The Telegraph 12
## 13773 MetroUK 2020-01-11T14:30:10.000Z Metro 3
## 13774 TheSun 2020-01-11T14:30:00.000Z The Sun 10
## 13775 DailyMailUK 2020-01-11T14:29:06.000Z Daily Mail U.K. 9
## 13776 DailyMailUK 2020-01-11T14:29:06.000Z Daily Mail U.K. 0
## 13777 DailyMirror 2020-01-11T14:29:00.000Z The Mirror 1
## 13778 DailyMirror 2020-01-11T14:27:00.000Z The Mirror 2
## 13779 TheSun 2020-01-11T14:26:33.000Z The Sun 7
## 13780 DailyMirror 2020-01-11T14:23:00.000Z The Mirror 1
## 13781 TheSun 2020-01-11T14:22:32.000Z The Sun 1
## 13782 guardian 2020-01-11T14:21:49.000Z The Guardian 4
## 13783 guardian 2020-01-11T14:21:31.000Z The Guardian 28
## 13784 TheSun 2020-01-11T14:21:00.000Z The Sun 5
## 13785 DailyMirror 2020-01-11T14:21:00.000Z The Mirror 1
## 13786 EveningStandard 2020-01-11T14:20:33.000Z Evening Standard 1
## 13787 TheSun 2020-01-11T14:20:00.000Z The Sun 9
## 13788 DailyMirror 2020-01-11T14:15:00.000Z The Mirror 2
## 13789 DailyMailUK 2020-01-11T14:14:03.000Z Daily Mail U.K. 12
## 13790 thetimes 2020-01-11T14:13:37.000Z The Times 3
## 13791 TheSun 2020-01-11T14:12:36.000Z The Sun 20
## 13792 TheSun 2020-01-11T14:12:25.000Z The Sun 6
## 13793 DailyMirror 2020-01-11T14:11:46.000Z The Mirror 11
## 13794 guardian 2020-01-11T14:11:37.000Z The Guardian 17
## 13795 TheSun 2020-01-11T14:10:00.000Z The Sun 1
## 13796 Telegraph 2020-01-11T14:07:34.000Z The Telegraph 12
## 13797 DailyMirror 2020-01-11T14:07:00.000Z The Mirror 1
## 13798 guardian 2020-01-11T14:06:20.000Z The Guardian 19
## 13799 TheSun 2020-01-11T14:02:47.000Z The Sun 5
## 13800 DailyMirror 2020-01-11T14:02:00.000Z The Mirror 1
## 13801 MetroUK 2020-01-11T14:01:48.000Z Metro 2
## 13802 MetroUK 2020-01-11T14:01:46.000Z Metro 5
## 13803 MetroUK 2020-01-11T14:01:37.000Z Metro 1
## 13804 DailyMirror 2020-01-11T14:01:14.000Z The Mirror 1
## 13805 Telegraph 2020-01-11T14:00:50.000Z The Telegraph 3
## 13806 EveningStandard 2020-01-11T14:00:41.000Z Evening Standard 5
## 13807 guardian 2020-01-11T14:00:41.000Z The Guardian 64
## 13808 MetroUK 2020-01-11T14:00:15.000Z Metro 10
## 13809 TheSun 2020-01-11T14:00:00.000Z The Sun 6
## 13810 guardian 2020-01-11T14:00:00.000Z The Guardian 7
## 13811 DailyMailUK 2020-01-11T13:59:03.000Z Daily Mail U.K. 12
## 13812 DailyMirror 2020-01-11T13:55:57.000Z The Mirror 0
## 13813 guardian 2020-01-11T13:54:54.000Z The Guardian 38
## 13814 guardian 2020-01-11T13:54:53.000Z The Guardian 8
## 13815 DailyMirror 2020-01-11T13:54:42.000Z The Mirror 0
## 13816 DailyMirror 2020-01-11T13:53:00.000Z The Mirror 1
## 13817 TheSun 2020-01-11T13:52:36.000Z The Sun 4
## 13818 DailyMirror 2020-01-11T13:51:00.000Z The Mirror 2
## 13819 TheSun 2020-01-11T13:50:00.000Z The Sun 8
## 13820 guardian 2020-01-11T13:48:40.000Z The Guardian 37
## 13821 TheSun 2020-01-11T13:46:59.000Z The Sun 1
## 13822 DailyMirror 2020-01-11T13:46:00.000Z The Mirror 0
## 13823 DailyMirror 2020-01-11T13:44:20.000Z The Mirror 5
## 13824 DailyMirror 2020-01-11T13:44:16.000Z The Mirror 7
## 13825 DailyMailUK 2020-01-11T13:44:06.000Z Daily Mail U.K. 6
## 13826 Telegraph 2020-01-11T13:43:48.000Z The Telegraph 5
## 13827 TheSun 2020-01-11T13:42:47.000Z The Sun 0
## 13828 EveningStandard 2020-01-11T13:40:47.000Z Evening Standard 0
## 13829 TheSun 2020-01-11T13:40:01.000Z The Sun 19
## 13830 thetimes 2020-01-11T13:38:53.000Z The Times 1
## 13831 TheSun 2020-01-11T13:38:07.000Z The Sun 6
## 13832 guardian 2020-01-11T13:37:51.000Z The Guardian 30
## 13833 DailyMirror 2020-01-11T13:37:00.000Z The Mirror 0
## 13834 TheSun 2020-01-11T13:32:55.000Z The Sun 1
## 13835 MetroUK 2020-01-11T13:30:07.000Z Metro 7
## 13836 Telegraph 2020-01-11T13:30:02.000Z The Telegraph 4
## 13837 TheSun 2020-01-11T13:30:00.000Z The Sun 1
## 13838 DailyMailUK 2020-01-11T13:29:05.000Z Daily Mail U.K. 0
## 13839 DailyMirror 2020-01-11T13:29:00.000Z The Mirror 3
## 13840 MetroUK 2020-01-11T13:26:49.000Z Metro 2
## 13841 guardian 2020-01-11T13:26:04.000Z The Guardian 23
## 13842 TheSun 2020-01-11T13:24:39.000Z The Sun 2
## 13843 TheSun 2020-01-11T13:23:09.000Z The Sun 35
## 13844 EveningStandard 2020-01-11T13:20:49.000Z Evening Standard 3
## 13845 TheSun 2020-01-11T13:20:00.000Z The Sun 19
## 13846 DailyMirror 2020-01-11T13:18:00.000Z The Mirror 1
## 13847 guardian 2020-01-11T13:17:51.000Z The Guardian 7
## 13848 DailyMirror 2020-01-11T13:15:00.000Z The Mirror 0
## 13849 TheSun 2020-01-11T13:12:16.000Z The Sun 0
## 13850 DailyMirror 2020-01-11T13:12:16.000Z The Mirror 1
## 13851 DailyMirror 2020-01-11T13:10:19.000Z The Mirror 4
## 13852 thetimes 2020-01-11T13:10:10.000Z The Times 119
## 13853 Telegraph 2020-01-11T13:10:08.000Z The Telegraph 6
## 13854 TheSun 2020-01-11T13:10:00.000Z The Sun 3
## 13855 guardian 2020-01-11T13:09:08.000Z The Guardian 13
## 13856 DailyMirror 2020-01-11T13:08:55.000Z The Mirror 0
## 13857 DailyMirror 2020-01-11T13:07:00.000Z The Mirror 4
## 13858 DailyMirror 2020-01-12T13:04:59.000Z The Mirror 7
## 13859 TheSun 2020-01-12T13:02:09.000Z The Sun 3
## 13860 DailyMirror 2020-01-12T13:01:41.000Z The Mirror 2
## 13861 DailyMailUK 2020-01-12T13:01:26.000Z Daily Mail U.K. 3
## 13862 Telegraph 2020-01-12T13:00:37.000Z The Telegraph 36
## 13863 Telegraph 2020-01-12T13:00:35.000Z The Telegraph 1
## 13864 guardian 2020-01-12T13:00:32.000Z The Guardian 18
## 13865 MetroUK 2020-01-12T13:00:06.000Z Metro 0
## 13866 guardian 2020-01-12T13:00:00.000Z The Guardian 3
## 13867 TheSun 2020-01-12T12:58:06.000Z The Sun 11
## 13868 DailyMirror 2020-01-12T12:57:00.000Z The Mirror 0
## 13869 guardian 2020-01-12T12:54:08.000Z The Guardian 6
## 13870 guardian 2020-01-12T12:52:17.000Z The Guardian 26
## 13871 TheSun 2020-01-12T12:52:17.000Z The Sun 1
## 13872 DailyMailUK 2020-01-12T12:50:19.000Z Daily Mail U.K. 3
## 13873 TheSun 2020-01-12T12:50:00.000Z The Sun 10
## 13874 guardian 2020-01-12T12:45:24.000Z The Guardian 3
## 13875 TheSun 2020-01-12T12:42:28.000Z The Sun 3
## 13876 Telegraph 2020-01-12T12:42:16.000Z The Telegraph 20
## 13877 Telegraph 2020-01-12T12:41:48.000Z The Telegraph 6
## 13878 TheSun 2020-01-12T12:40:00.000Z The Sun 5
## 13879 Telegraph 2020-01-12T12:36:35.000Z The Telegraph 36
## 13880 guardian 2020-01-12T12:36:33.000Z The Guardian 11
## 13881 DailyMirror 2020-01-12T12:34:00.000Z The Mirror 0
## 13882 TheSun 2020-01-12T12:32:37.000Z The Sun 5
## 13883 MetroUK 2020-01-12T12:30:07.000Z Metro 1
## 13884 TheSun 2020-01-12T12:30:00.000Z The Sun 5
## 13885 guardian 2020-01-12T12:28:33.000Z The Guardian 31
## 13886 guardian 2020-01-12T12:27:34.000Z The Guardian 339
## 13887 thetimes 2020-01-12T12:27:08.000Z The Times 6
## 13888 DailyMirror 2020-01-12T12:24:00.000Z The Mirror 2
## 13889 DailyMirror 2020-01-12T12:23:18.000Z The Mirror 9
## 13890 guardian 2020-01-12T12:22:59.000Z The Guardian 8
## 13891 TheSun 2020-01-12T12:22:59.000Z The Sun 7
## 13892 TheSun 2020-01-12T12:20:00.000Z The Sun 29
## 13893 DailyMirror 2020-01-12T12:17:14.000Z The Mirror 8
## 13894 TheSun 2020-01-12T12:16:50.000Z The Sun 4
## 13895 DailyMirror 2020-01-12T12:15:30.000Z The Mirror 2
## 13896 guardian 2020-01-12T12:15:06.000Z The Guardian 5
## 13897 TheSun 2020-01-12T12:12:09.000Z The Sun 5
## 13898 DailyMirror 2020-01-12T12:11:37.000Z The Mirror 5
## 13899 TheSun 2020-01-12T12:10:00.000Z The Sun 34
## 13900 DailyMirror 2020-01-12T12:09:31.000Z The Mirror 2
## 13901 Telegraph 2020-01-12T12:09:13.000Z The Telegraph 4
## 13902 DailyMirror 2020-01-12T12:09:00.000Z The Mirror 1
## 13903 guardian 2020-01-12T12:08:11.000Z The Guardian 2
## 13904 TheSun 2020-01-12T12:02:40.000Z The Sun 4
## 13905 DailyMailUK 2020-01-12T12:00:43.000Z Daily Mail U.K. 13
## 13906 MetroUK 2020-01-12T12:00:09.000Z Metro 1
## 13907 guardian 2020-01-12T12:00:06.000Z The Guardian 2
## 13908 TheSun 2020-01-12T12:00:00.000Z The Sun 4
## 13909 DailyMirror 2020-01-12T11:59:06.000Z The Mirror 3
## 13910 DailyMirror 2020-01-12T11:58:00.000Z The Mirror 2
## 13911 DailyMirror 2020-01-12T11:57:00.000Z The Mirror 0
## 13912 guardian 2020-01-12T11:56:21.000Z The Guardian 95
## 13913 TheSun 2020-01-12T11:53:23.000Z The Sun 5
## 13914 DailyMailUK 2020-01-12T11:52:39.000Z Daily Mail U.K. 54
## 13915 TheSun 2020-01-12T11:52:25.000Z The Sun 1
## 13916 TheSun 2020-01-12T11:50:00.000Z The Sun 17
## 13917 guardian 2020-01-12T11:49:30.000Z The Guardian 8
## 13918 DailyMirror 2020-01-12T11:49:00.000Z The Mirror 2
## 13919 Telegraph 2020-01-12T11:45:27.000Z The Telegraph 11
## 13920 TheSun 2020-01-12T11:42:27.000Z The Sun 15
## 13921 guardian 2020-01-12T11:40:29.000Z The Guardian 17
## 13922 TheSun 2020-01-12T11:40:00.000Z The Sun 27
## 13923 DailyMirror 2020-01-12T11:37:26.000Z The Mirror 4
## 13924 DailyMirror 2020-01-12T11:36:52.000Z The Mirror 4
## 13925 DailyMirror 2020-01-12T11:34:00.000Z The Mirror 2
## 13926 DailyMailUK 2020-01-12T11:33:40.000Z Daily Mail U.K. 7
## 13927 DailyMirror 2020-01-12T11:33:00.000Z The Mirror 2
## 13928 guardian 2020-01-12T11:32:40.000Z The Guardian 2
## 13929 guardian 2020-01-12T11:32:39.000Z The Guardian 4
## 13930 guardian 2020-01-12T11:32:38.000Z The Guardian 25
## 13931 TheSun 2020-01-12T11:32:37.000Z The Sun 1
## 13932 guardian 2020-01-12T11:32:37.000Z The Guardian 15
## 13933 guardian 2020-01-12T11:32:35.000Z The Guardian 11
## 13934 Telegraph 2020-01-12T11:30:55.000Z The Telegraph 6
## 13935 TheSun 2020-01-12T11:30:27.000Z The Sun 3
## 13936 MetroUK 2020-01-12T11:30:04.000Z Metro 1
## 13937 TheSun 2020-01-12T11:30:00.000Z The Sun 60
## 13938 guardian 2020-01-12T11:29:56.000Z The Guardian 9
## 13939 DailyMailUK 2020-01-12T11:28:14.000Z Daily Mail U.K. 8
## 13940 DailyMirror 2020-01-12T11:26:36.000Z The Mirror 5
## 13941 DailyMirror 2020-01-12T11:23:00.000Z The Mirror 0
## 13942 DailyMailUK 2020-01-12T11:22:59.000Z Daily Mail U.K. 15
## 13943 TheSun 2020-01-12T11:22:56.000Z The Sun 2
## 13944 DailyMailUK 2020-01-12T11:22:22.000Z Daily Mail U.K. 52
## 13945 DailyMirror 2020-01-12T11:22:00.000Z The Mirror 8
## 13946 guardian 2020-01-12T11:20:59.000Z The Guardian 38
## 13947 DailyMirror 2020-01-12T11:20:00.000Z The Mirror 3
## 13948 TheSun 2020-01-12T11:20:00.000Z The Sun 3
## 13949 Telegraph 2020-01-12T11:15:09.000Z The Telegraph 8
## 13950 DailyMirror 2020-01-12T11:13:46.000Z The Mirror 0
## 13951 guardian 2020-01-12T11:13:06.000Z The Guardian 29
## 13952 DailyMirror 2020-01-12T11:13:00.000Z The Mirror 0
## 13953 DailyMirror 2020-01-12T11:12:53.000Z The Mirror 16
## 13954 TheSun 2020-01-12T11:12:08.000Z The Sun 4
## 13955 TheSun 2020-01-12T11:10:00.000Z The Sun 15
## 13956 DailyMirror 2020-01-12T11:09:00.000Z The Mirror 5
## 13957 DailyMirror 2020-01-12T11:08:36.000Z The Mirror 10
## 13958 DailyMirror 2020-01-12T11:08:00.000Z The Mirror 2
## 13959 guardian 2020-01-12T11:06:12.000Z The Guardian 6
## 13960 guardian 2020-01-12T11:05:29.000Z The Guardian 7
## 13961 TheSun 2020-01-12T11:03:57.000Z The Sun 9
## 13962 DailyMirror 2020-01-12T11:02:47.000Z The Mirror 6
## 13963 TheSun 2020-01-12T11:02:30.000Z The Sun 6
## 13964 DailyMirror 2020-01-12T11:02:00.000Z The Mirror 1
## 13965 DailyMailUK 2020-01-12T11:01:57.000Z Daily Mail U.K. 1
## 13966 Telegraph 2020-01-12T11:00:36.000Z The Telegraph 3
## 13967 MetroUK 2020-01-12T11:00:15.000Z Metro 0
## 13968 guardian 2020-01-12T11:00:00.000Z The Guardian 8
## 13969 TheSun 2020-01-12T11:00:00.000Z The Sun 2
## 13970 DailyMirror 2020-01-12T11:00:00.000Z The Mirror 1
## 13971 DailyMailUK 2020-01-12T10:57:14.000Z Daily Mail U.K. 12
## 13972 guardian 2020-01-12T10:56:36.000Z The Guardian 60
## 13973 DailyMirror 2020-01-12T10:55:00.000Z The Mirror 1
## 13974 DailyMirror 2020-01-12T10:53:15.000Z The Mirror 1
## 13975 DailyMirror 2020-01-12T10:53:01.000Z The Mirror 5
## 13976 TheSun 2020-01-12T10:52:39.000Z The Sun 9
## 13977 DailyMirror 2020-01-12T10:52:00.000Z The Mirror 2
## 13978 DailyMirror 2020-01-12T10:51:00.000Z The Mirror 1
## 13979 DailyMailUK 2020-01-12T10:50:52.000Z Daily Mail U.K. 4
## 13980 TheSun 2020-01-12T10:50:00.000Z The Sun 6
## 13981 DailyMirror 2020-01-12T10:50:00.000Z The Mirror 8
## 13982 guardian 2020-01-12T10:48:44.000Z The Guardian 22
## 13983 DailyMirror 2020-01-12T10:47:45.000Z The Mirror 3
## 13984 DailyMirror 2020-01-12T10:47:14.000Z The Mirror 5
## 13985 DailyMirror 2020-01-12T10:46:41.000Z The Mirror 5
## 13986 TheSun 2020-01-12T10:42:53.000Z The Sun 4
## 13987 guardian 2020-01-12T10:40:49.000Z The Guardian 19
## 13988 guardian 2020-01-12T10:40:31.000Z The Guardian 7
## 13989 guardian 2020-01-12T10:40:29.000Z The Guardian 99
## 13990 TheSun 2020-01-12T10:40:11.000Z The Sun 14
## 13991 TheSun 2020-01-12T10:40:00.000Z The Sun 25
## 13992 DailyMirror 2020-01-12T10:39:32.000Z The Mirror 5
## 13993 guardian 2020-01-12T10:36:56.000Z The Guardian 8
## 13994 DailyMirror 2020-01-12T10:34:56.000Z The Mirror 3
## 13995 TheSun 2020-01-12T10:32:58.000Z The Sun 3
## 13996 Telegraph 2020-01-12T10:31:07.000Z The Telegraph 7
## 13997 MetroUK 2020-01-12T10:30:10.000Z Metro 6
## 13998 TheSun 2020-01-12T10:30:00.000Z The Sun 27
## 13999 guardian 2020-01-12T10:29:45.000Z The Guardian 8
## 14000 DailyMailUK 2020-01-12T10:23:40.000Z Daily Mail U.K. 9
## 14001 TheSun 2020-01-12T10:22:53.000Z The Sun 8
## 14002 DailyMirror 2020-01-12T10:22:05.000Z The Mirror 13
## 14003 guardian 2020-01-12T10:20:57.000Z The Guardian 88
## 14004 TheSun 2020-01-12T10:20:00.000Z The Sun 1
## 14005 DailyMirror 2020-01-12T10:19:00.000Z The Mirror 7
## 14006 TheSun 2020-01-12T10:13:46.000Z The Sun 27
## 14007 TheSun 2020-01-12T10:13:03.000Z The Sun 2
## 14008 guardian 2020-01-12T10:12:03.000Z The Guardian 19
## 14009 TheSun 2020-01-12T10:10:04.000Z The Sun 9
## 14010 TheSun 2020-01-12T10:10:00.000Z The Sun 13
## 14011 DailyMirror 2020-01-12T10:10:00.000Z The Mirror 5
## 14012 DailyMailUK 2020-01-12T10:07:44.000Z Daily Mail U.K. 2
## 14013 DailyMirror 2020-01-12T10:06:38.000Z The Mirror 7
## 14014 TheSun 2020-01-12T10:03:20.000Z The Sun 3
## 14015 DailyMirror 2020-01-12T10:02:33.000Z The Mirror 2
## 14016 TheSun 2020-01-12T10:02:14.000Z The Sun 1
## 14017 Telegraph 2020-01-12T10:00:17.000Z The Telegraph 4
## 14018 MetroUK 2020-01-12T10:00:08.000Z Metro 0
## 14019 TheSun 2020-01-12T10:00:00.000Z The Sun 1
## 14020 DailyMirror 2020-01-12T10:00:00.000Z The Mirror 1
## 14021 guardian 2020-01-12T10:00:00.000Z The Guardian 4
## 14022 DailyMirror 2020-01-12T10:00:00.000Z The Mirror 0
## 14023 DailyMirror 2020-01-12T10:00:00.000Z The Mirror 2
## 14024 DailyMirror 2020-01-12T09:59:24.000Z The Mirror 1
## 14025 DailyMirror 2020-01-12T09:58:00.000Z The Mirror 5
## 14026 DailyMirror 2020-01-12T09:55:30.000Z The Mirror 4
## 14027 guardian 2020-01-12T09:55:29.000Z The Guardian 16
## 14028 guardian 2020-01-12T09:54:22.000Z The Guardian 57
## 14029 TheSun 2020-01-12T09:52:25.000Z The Sun 8
## 14030 TheSun 2020-01-12T09:50:00.000Z The Sun 77
## 14031 DailyMirror 2020-01-12T09:49:07.000Z The Mirror 5
## 14032 DailyMirror 2020-01-12T09:47:57.000Z The Mirror 2
## 14033 TheSun 2020-01-12T09:47:00.000Z The Sun 4
## 14034 guardian 2020-01-12T09:45:54.000Z The Guardian 57
## 14035 guardian 2020-01-12T09:45:53.000Z The Guardian 49
## 14036 DailyMirror 2020-01-12T09:43:32.000Z The Mirror 3
## 14037 TheSun 2020-01-12T09:42:34.000Z The Sun 121
## 14038 DailyMirror 2020-01-12T09:40:00.000Z The Mirror 4
## 14039 DailyMirror 2020-01-12T09:40:00.000Z The Mirror 6
## 14040 TheSun 2020-01-12T09:40:00.000Z The Sun 15
## 14041 guardian 2020-01-12T09:39:36.000Z The Guardian 63
## 14042 TheSun 2020-01-12T09:35:31.000Z The Sun 11
## 14043 Telegraph 2020-01-12T09:32:46.000Z The Telegraph 14
## 14044 TheSun 2020-01-12T09:32:46.000Z The Sun 5
## 14045 DailyMailUK 2020-01-12T09:32:17.000Z Daily Mail U.K. 7
## 14046 MetroUK 2020-01-12T09:30:05.000Z Metro 1
## 14047 DailyMirror 2020-01-12T09:30:00.000Z The Mirror 8
## 14048 TheSun 2020-01-12T09:30:00.000Z The Sun 9
## 14049 guardian 2020-01-12T09:28:46.000Z The Guardian 15
## 14050 DailyMirror 2020-01-12T09:22:55.000Z The Mirror 5
## 14051 TheSun 2020-01-12T09:22:53.000Z The Sun 2
## 14052 TheSun 2020-01-12T09:20:00.000Z The Sun 3
## 14053 guardian 2020-01-12T09:16:55.000Z The Guardian 24
## 14054 guardian 2020-01-12T09:16:54.000Z The Guardian 57
## 14055 guardian 2020-01-12T09:16:53.000Z The Guardian 21
## 14056 guardian 2020-01-12T09:16:51.000Z The Guardian 17
## 14057 Telegraph 2020-01-12T09:16:08.000Z The Telegraph 17
## 14058 TheSun 2020-01-12T09:15:46.000Z The Sun 5
## 14059 DailyMirror 2020-01-12T09:15:21.000Z The Mirror 3
## 14060 DailyMailUK 2020-01-12T09:13:08.000Z Daily Mail U.K. 39
## 14061 TheSun 2020-01-12T09:13:03.000Z The Sun 7
## 14062 guardian 2020-01-12T09:11:05.000Z The Guardian 5
## 14063 DailyMirror 2020-01-12T09:10:53.000Z The Mirror 5
## 14064 TheSun 2020-01-12T09:10:00.000Z The Sun 18
## 14065 Telegraph 2020-01-12T09:09:01.000Z The Telegraph 5
## 14066 DailyMirror 2020-01-12T09:09:00.000Z The Mirror 6
## 14067 DailyMailUK 2020-01-12T09:06:25.000Z Daily Mail U.K. 2
## 14068 DailyMirror 2020-01-12T09:06:16.000Z The Mirror 2
## 14069 Telegraph 2020-01-12T09:04:14.000Z The Telegraph 11
## 14070 TheSun 2020-01-12T09:02:15.000Z The Sun 3
## 14071 DailyMirror 2020-01-12T09:01:57.000Z The Mirror 7
## 14072 EveningStandard 2020-01-12T09:00:19.000Z Evening Standard 0
## 14073 guardian 2020-01-12T09:00:18.000Z The Guardian 4
## 14074 MetroUK 2020-01-12T09:00:14.000Z Metro 3
## 14075 DailyMirror 2020-01-12T09:00:00.000Z The Mirror 2
## 14076 DailyMirror 2020-01-12T09:00:00.000Z The Mirror 3
## 14077 TheSun 2020-01-12T09:00:00.000Z The Sun 2
## 14078 guardian 2020-01-12T09:00:00.000Z The Guardian 1
## 14079 DailyMirror 2020-01-12T08:59:00.000Z The Mirror 1
## 14080 DailyMirror 2020-01-12T08:56:53.000Z The Mirror 4
## 14081 DailyMailUK 2020-01-12T08:55:23.000Z Daily Mail U.K. 2
## 14082 DailyMirror 2020-01-12T08:55:00.000Z The Mirror 4
## 14083 DailyMirror 2020-01-12T08:53:00.000Z The Mirror 0
## 14084 TheSun 2020-01-12T08:52:48.000Z The Sun 2
## 14085 DailyMirror 2020-01-12T08:52:40.000Z The Mirror 3
## 14086 guardian 2020-01-12T08:50:00.000Z The Guardian 0
## 14087 TheSun 2020-01-12T08:50:00.000Z The Sun 8
## 14088 guardian 2020-01-12T08:48:43.000Z The Guardian 3
## 14089 DailyMirror 2020-01-12T08:46:00.000Z The Mirror 6
## 14090 TheSun 2020-01-12T08:44:13.000Z The Sun 16
## 14091 TheSun 2020-01-12T08:42:47.000Z The Sun 2
## 14092 EveningStandard 2020-01-12T08:40:50.000Z Evening Standard 1
## 14093 DailyMailUK 2020-01-12T08:40:36.000Z Daily Mail U.K. 1
## 14094 TheSun 2020-01-12T08:40:00.000Z The Sun 13
## 14095 Telegraph 2020-01-12T08:39:52.000Z The Telegraph 41
## 14096 guardian 2020-01-12T08:37:06.000Z The Guardian 10
## 14097 guardian 2020-01-12T08:33:38.000Z The Guardian 14
## 14098 DailyMirror 2020-01-12T08:33:00.000Z The Mirror 2
## 14099 TheSun 2020-01-12T08:32:57.000Z The Sun 15
## 14100 MetroUK 2020-01-12T08:30:38.000Z Metro 0
## 14101 TheSun 2020-01-12T08:30:00.000Z The Sun 366
## 14102 DailyMirror 2020-01-12T08:29:00.000Z The Mirror 1
## 14103 DailyMirror 2020-01-12T08:26:00.000Z The Mirror 2
## 14104 TheSun 2020-01-12T08:25:02.000Z The Sun 1
## 14105 guardian 2020-01-12T08:23:42.000Z The Guardian 30
## 14106 TheSun 2020-01-12T08:22:37.000Z The Sun 3
## 14107 DailyMirror 2020-01-12T08:22:00.000Z The Mirror 4
## 14108 EveningStandard 2020-01-12T08:20:41.000Z Evening Standard 0
## 14109 TheSun 2020-01-12T08:20:00.000Z The Sun 12
## 14110 DailyMailUK 2020-01-12T08:17:03.000Z Daily Mail U.K. 89
## 14111 Telegraph 2020-01-12T08:13:48.000Z The Telegraph 200
## 14112 guardian 2020-01-12T08:13:46.000Z The Guardian 35
## 14113 DailyMirror 2020-01-12T08:13:00.000Z The Mirror 2
## 14114 TheSun 2020-01-12T08:12:49.000Z The Sun 2
## 14115 DailyMirror 2020-01-12T08:12:00.000Z The Mirror 6
## 14116 TheSun 2020-01-12T08:10:00.000Z The Sun 19
## 14117 DailyMailUK 2020-01-12T08:08:53.000Z Daily Mail U.K. 36
## 14118 TheSun 2020-01-12T08:04:37.000Z The Sun 9
## 14119 guardian 2020-01-12T08:02:58.000Z The Guardian 20
## 14120 TheSun 2020-01-12T08:02:58.000Z The Sun 1
## 14121 EveningStandard 2020-01-12T08:00:52.000Z Evening Standard 1
## 14122 TheSun 2020-01-12T08:00:50.000Z The Sun 2
## 14123 MetroUK 2020-01-12T08:00:08.000Z Metro 0
## 14124 DailyMirror 2020-01-12T08:00:00.000Z The Mirror 2
## 14125 TheSun 2020-01-12T08:00:00.000Z The Sun 6
## 14126 Telegraph 2020-01-12T07:59:53.000Z The Telegraph 8
## 14127 guardian 2020-01-12T07:55:13.000Z The Guardian 5
## 14128 DailyMirror 2020-01-12T07:55:00.000Z The Mirror 1
## 14129 TheSun 2020-01-12T07:52:57.000Z The Sun 5
## 14130 TheSun 2020-01-12T07:50:00.000Z The Sun 2
## 14131 TheSun 2020-01-12T07:49:37.000Z The Sun 1
## 14132 guardian 2020-01-12T07:47:04.000Z The Guardian 6
## 14133 Telegraph 2020-01-12T07:45:09.000Z The Telegraph 17
## 14134 TheSun 2020-01-12T07:42:23.000Z The Sun 1
## 14135 TheSun 2020-01-12T07:42:11.000Z The Sun 19
## 14136 EveningStandard 2020-01-12T07:40:11.000Z Evening Standard 0
## 14137 TheSun 2020-01-12T07:40:00.000Z The Sun 9
## 14138 TheSun 2020-01-12T07:38:29.000Z The Sun 2
## 14139 DailyMirror 2020-01-12T07:33:00.000Z The Mirror 6
## 14140 TheSun 2020-01-12T07:32:22.000Z The Sun 4
## 14141 DailyMirror 2020-01-12T07:31:22.000Z The Mirror 0
## 14142 Telegraph 2020-01-12T07:31:13.000Z The Telegraph 60
## 14143 MetroUK 2020-01-12T07:30:06.000Z Metro 2
## 14144 DailyMirror 2020-01-12T07:30:00.000Z The Mirror 0
## 14145 TheSun 2020-01-12T07:30:00.000Z The Sun 5
## 14146 guardian 2020-01-12T07:28:22.000Z The Guardian 13
## 14147 guardian 2020-01-12T07:28:17.000Z The Guardian 4
## 14148 guardian 2020-01-12T07:28:16.000Z The Guardian 13
## 14149 TheSun 2020-01-12T07:24:17.000Z The Sun 15
## 14150 TheSun 2020-01-12T07:22:51.000Z The Sun 4
## 14151 TheSun 2020-01-12T07:22:12.000Z The Sun 7
## 14152 thetimes 2020-01-12T07:20:14.000Z The Times 24
## 14153 EveningStandard 2020-01-12T07:20:14.000Z Evening Standard 1
## 14154 TheSun 2020-01-12T07:20:00.000Z The Sun 23
## 14155 TheSun 2020-01-12T07:18:04.000Z The Sun 2
## 14156 Telegraph 2020-01-12T07:17:18.000Z The Telegraph 12
## 14157 TheSun 2020-01-12T07:14:08.000Z The Sun 51
## 14158 TheSun 2020-01-12T07:12:11.000Z The Sun 10
## 14159 TheSun 2020-01-12T07:11:59.000Z The Sun 6
## 14160 TheSun 2020-01-12T07:10:00.000Z The Sun 17
## 14161 TheSun 2020-01-12T07:07:15.000Z The Sun 5
## 14162 TheSun 2020-01-12T07:07:01.000Z The Sun 5
## 14163 TheSun 2020-01-12T07:06:15.000Z The Sun 14
## 14164 TheSun 2020-01-12T07:02:19.000Z The Sun 7
## 14165 thetimes 2020-01-12T07:00:26.000Z The Times 1
## 14166 Telegraph 2020-01-12T07:00:23.000Z The Telegraph 1
## 14167 Telegraph 2020-01-12T07:00:23.000Z The Telegraph 2
## 14168 EveningStandard 2020-01-12T07:00:22.000Z Evening Standard 0
## 14169 MetroUK 2020-01-12T07:00:11.000Z Metro 1
## 14170 TheSun 2020-01-12T07:00:00.000Z The Sun 11
## 14171 DailyMirror 2020-01-12T07:00:00.000Z The Mirror 1
## 14172 guardian 2020-01-12T06:59:09.000Z The Guardian 12
## 14173 DailyMirror 2020-01-12T06:51:34.000Z The Mirror 6
## 14174 thetimes 2020-01-12T06:40:41.000Z The Times 12
## 14175 EveningStandard 2020-01-12T06:40:40.000Z Evening Standard 0
## 14176 TheSun 2020-01-12T06:40:00.000Z The Sun 15
## 14177 guardian 2020-01-12T06:31:24.000Z The Guardian 5
## 14178 guardian 2020-01-12T06:31:22.000Z The Guardian 46
## 14179 guardian 2020-01-12T06:31:21.000Z The Guardian 24
## 14180 guardian 2020-01-12T06:31:20.000Z The Guardian 0
## 14181 MetroUK 2020-01-12T06:30:05.000Z Metro 2
## 14182 thetimes 2020-01-12T06:21:02.000Z The Times 10
## 14183 EveningStandard 2020-01-12T06:21:01.000Z Evening Standard 0
## 14184 TheSun 2020-01-12T06:20:00.000Z The Sun 4
## 14185 DailyMirror 2020-01-12T06:10:00.000Z The Mirror 1
## 14186 DailyMirror 2020-01-12T06:02:00.000Z The Mirror 3
## 14187 EveningStandard 2020-01-12T06:00:23.000Z Evening Standard 0
## 14188 thetimes 2020-01-12T06:00:19.000Z The Times 1
## 14189 Telegraph 2020-01-12T06:00:17.000Z The Telegraph 9
## 14190 TheSun 2020-01-12T06:00:00.000Z The Sun 10
## 14191 DailyMirror 2020-01-12T05:58:54.000Z The Mirror 3
## 14192 guardian 2020-01-12T05:46:29.000Z The Guardian 6
## 14193 EveningStandard 2020-01-12T05:40:35.000Z Evening Standard 0
## 14194 TheSun 2020-01-12T05:40:00.000Z The Sun 4
## 14195 DailyMirror 2020-01-12T05:32:13.000Z The Mirror 15
## 14196 EveningStandard 2020-01-12T05:20:10.000Z Evening Standard 2
## 14197 TheSun 2020-01-12T05:20:00.000Z The Sun 18
## 14198 EveningStandard 2020-01-12T05:00:19.000Z Evening Standard 1
## 14199 TheSun 2020-01-12T05:00:00.000Z The Sun 10
## 14200 guardian 2020-01-12T04:57:06.000Z The Guardian 11
## 14201 DailyMirror 2020-01-12T04:45:00.000Z The Mirror 2
## 14202 EveningStandard 2020-01-12T04:40:23.000Z Evening Standard 1
## 14203 TheSun 2020-01-12T04:40:00.000Z The Sun 92
## 14204 DailyMirror 2020-01-12T04:34:48.000Z The Mirror 17
## 14205 DailyMirror 2020-01-12T04:27:01.000Z The Mirror 0
## 14206 EveningStandard 2020-01-12T04:21:01.000Z Evening Standard 0
## 14207 TheSun 2020-01-12T04:20:00.000Z The Sun 20
## 14208 guardian 2020-01-12T04:07:42.000Z The Guardian 26
## 14209 DailyMirror 2020-01-12T04:05:00.000Z The Mirror 2
## 14210 EveningStandard 2020-01-12T04:00:19.000Z Evening Standard 1
## 14211 TheSun 2020-01-12T04:00:00.000Z The Sun 18
## 14212 DailyMirror 2020-01-12T03:50:59.000Z The Mirror 2
## 14213 DailyMailUK 2020-01-12T03:46:37.000Z Daily Mail U.K. 26
## 14214 EveningStandard 2020-01-12T03:40:37.000Z Evening Standard 0
## 14215 TheSun 2020-01-12T03:40:00.000Z The Sun 8
## 14216 DailyMirror 2020-01-12T03:39:04.000Z The Mirror 2
## 14217 guardian 2020-01-12T03:31:45.000Z The Guardian 4
## 14218 EveningStandard 2020-01-12T03:20:50.000Z Evening Standard 0
## 14219 TheSun 2020-01-12T03:20:00.000Z The Sun 5
## 14220 EveningStandard 2020-01-12T03:01:02.000Z Evening Standard 1
## 14221 TheSun 2020-01-12T03:00:00.000Z The Sun 9
## 14222 guardian 2020-01-12T02:43:37.000Z The Guardian 68
## 14223 EveningStandard 2020-01-12T02:40:31.000Z Evening Standard 0
## 14224 TheSun 2020-01-12T02:40:00.000Z The Sun 15
## 14225 DailyMirror 2020-01-12T02:33:00.000Z The Mirror 0
## 14226 EveningStandard 2020-01-12T02:20:38.000Z Evening Standard 0
## 14227 TheSun 2020-01-12T02:20:00.000Z The Sun 18
## 14228 DailyMirror 2020-01-12T02:18:19.000Z The Mirror 27
## 14229 EveningStandard 2020-01-12T02:00:50.000Z Evening Standard 0
## 14230 TheSun 2020-01-12T02:00:00.000Z The Sun 4
## 14231 DailyMirror 2020-01-12T01:44:00.000Z The Mirror 0
## 14232 EveningStandard 2020-01-12T01:40:12.000Z Evening Standard 0
## 14233 TheSun 2020-01-12T01:40:00.000Z The Sun 18
## 14234 EveningStandard 2020-01-12T01:20:24.000Z Evening Standard 0
## 14235 TheSun 2020-01-12T01:20:00.000Z The Sun 45
## 14236 TheSun 2020-01-12T01:17:41.000Z The Sun 1
## 14237 guardian 2020-01-12T01:13:31.000Z The Guardian 2
## 14238 EveningStandard 2020-01-12T01:00:29.000Z Evening Standard 0
## 14239 TheSun 2020-01-12T01:00:00.000Z The Sun 1
## 14240 TheSun 2020-01-12T00:55:37.000Z The Sun 3
## 14241 DailyMirror 2020-01-12T00:51:00.000Z The Mirror 0
## 14242 guardian 2020-01-12T00:46:39.000Z The Guardian 37
## 14243 DailyMirror 2020-01-12T00:46:37.000Z The Mirror 3
## 14244 DailyMirror 2020-01-12T00:43:00.000Z The Mirror 1
## 14245 EveningStandard 2020-01-12T00:40:48.000Z Evening Standard 4
## 14246 DailyMirror 2020-01-12T00:40:00.000Z The Mirror 11
## 14247 DailyMirror 2020-01-12T00:40:00.000Z The Mirror 1
## 14248 TheSun 2020-01-12T00:40:00.000Z The Sun 13
## 14249 DailyMirror 2020-01-12T00:29:00.000Z The Mirror 2
## 14250 guardian 2020-01-12T00:27:01.000Z The Guardian 5
## 14251 DailyMirror 2020-01-12T00:22:00.000Z The Mirror 4
## 14252 EveningStandard 2020-01-12T00:20:09.000Z Evening Standard 0
## 14253 DailyMailUK 2020-01-12T00:15:07.000Z Daily Mail U.K. 3
## 14254 DailyMirror 2020-01-12T00:10:00.000Z The Mirror 11
## 14255 EveningStandard 2020-01-12T00:00:29.000Z Evening Standard 2
## 14256 DailyMailUK 2020-01-12T00:00:15.000Z Daily Mail U.K. 9
## 14257 DailyMirror 2020-01-11T23:59:00.000Z The Mirror 2
## 14258 guardian 2020-01-11T23:55:34.000Z The Guardian 5
## 14259 DailyMirror 2020-01-11T23:50:37.000Z The Mirror 2
## 14260 TheSun 2020-01-11T23:50:00.000Z The Sun 17
## 14261 DailyMirror 2020-01-11T23:49:58.000Z The Mirror 2
## 14262 DailyMirror 2020-01-11T23:47:55.000Z The Mirror 14
## 14263 DailyMailUK 2020-01-11T23:46:02.000Z Daily Mail U.K. 8
## 14264 DailyMirror 2020-01-11T23:43:00.000Z The Mirror 2
## 14265 EveningStandard 2020-01-11T23:40:38.000Z Evening Standard 1
## 14266 TheSun 2020-01-11T23:40:00.000Z The Sun 23
## 14267 DailyMailUK 2020-01-11T23:30:05.000Z Daily Mail U.K. 0
## 14268 TheSun 2020-01-11T23:30:00.000Z The Sun 6
## 14269 guardian 2020-01-11T23:25:55.000Z The Guardian 10
## 14270 EveningStandard 2020-01-11T23:20:13.000Z Evening Standard 0
## 14271 TheSun 2020-01-11T23:20:00.000Z The Sun 15
## 14272 guardian 2020-01-11T23:15:20.000Z The Guardian 49
## 14273 DailyMailUK 2020-01-11T23:15:06.000Z Daily Mail U.K. 10
## 14274 Telegraph 2020-01-11T23:13:46.000Z The Telegraph 16
## 14275 DailyMirror 2020-01-11T23:13:00.000Z The Mirror 9
## 14276 TheSun 2020-01-11T23:12:33.000Z The Sun 41
## 14277 DailyMirror 2020-01-11T23:12:00.000Z The Mirror 4
## 14278 DailyMirror 2020-01-11T23:10:30.000Z The Mirror 20
## 14279 TheSun 2020-01-11T23:10:00.000Z The Sun 26
## 14280 TheSun 2020-01-11T23:07:37.000Z The Sun 3
## 14281 Telegraph 2020-01-11T23:05:21.000Z The Telegraph 15
## 14282 TheSun 2020-01-11T23:02:43.000Z The Sun 2
## 14283 TheSun 2020-01-11T23:02:42.000Z The Sun 9
## 14284 EveningStandard 2020-01-11T23:00:44.000Z Evening Standard 0
## 14285 DailyMailUK 2020-01-11T23:00:07.000Z Daily Mail U.K. 7
## like_count quote_count date
## 1 3 0 2020-01-01
## 2 0 0 2020-01-01
## 3 16 0 2020-01-01
## 4 10 0 2020-01-01
## 5 31 0 2020-01-01
## 6 204 4 2020-01-01
## 7 36 0 2020-01-01
## 8 19 5 2020-01-01
## 9 3 0 2020-01-01
## 10 0 0 2020-01-01
## 11 50 2 2020-01-01
## 12 67 1 2020-01-01
## 13 2937 86 2020-01-01
## 14 0 0 2020-01-01
## 15 0 0 2020-01-01
## 16 34 2 2020-01-01
## 17 4 0 2020-01-01
## 18 3 0 2020-01-01
## 19 14 1 2020-01-01
## 20 5 1 2020-01-01
## 21 49 2 2020-01-01
## 22 2 0 2020-01-01
## 23 18 0 2020-01-01
## 24 13 0 2020-01-01
## 25 298 18 2020-01-01
## 26 3 1 2020-01-01
## 27 12 1 2020-01-01
## 28 18 0 2020-01-01
## 29 27 0 2020-01-01
## 30 68 1 2020-01-01
## 31 32 4 2020-01-01
## 32 17 1 2020-01-01
## 33 10 0 2020-01-01
## 34 0 0 2020-01-01
## 35 19 1 2020-01-01
## 36 9 0 2020-01-01
## 37 101 1 2020-01-01
## 38 0 0 2020-01-01
## 39 0 0 2020-01-01
## 40 0 0 2020-01-01
## 41 7 0 2020-01-01
## 42 31 14 2020-01-01
## 43 0 0 2020-01-01
## 44 37 0 2020-01-01
## 45 5 0 2020-01-01
## 46 5 0 2020-01-01
## 47 12 1 2020-01-01
## 48 54 3 2020-01-01
## 49 56 4 2020-01-01
## 50 4 0 2020-01-01
## 51 9 1 2020-01-01
## 52 0 0 2020-01-01
## 53 1 0 2020-01-01
## 54 1 0 2020-01-01
## 55 7 0 2020-01-01
## 56 8 0 2020-01-01
## 57 80 2 2020-01-01
## 58 5 2 2020-01-01
## 59 14 0 2020-01-01
## 60 26 0 2020-01-01
## 61 64 2 2020-01-01
## 62 986 155 2020-01-01
## 63 3 0 2020-01-01
## 64 1 0 2020-01-01
## 65 18 2 2020-01-01
## 66 9 0 2020-01-01
## 67 0 0 2020-01-01
## 68 1 0 2020-01-01
## 69 234 5 2020-01-01
## 70 0 0 2020-01-01
## 71 1 0 2020-01-01
## 72 0 0 2020-01-01
## 73 178 10 2020-01-01
## 74 14 2 2020-01-01
## 75 7 0 2020-01-01
## 76 9 0 2020-01-01
## 77 6 1 2020-01-01
## 78 15 0 2020-01-01
## 79 9 0 2020-01-01
## 80 2 0 2020-01-01
## 81 4 2 2020-01-01
## 82 47 2 2020-01-01
## 83 0 0 2020-01-01
## 84 0 0 2020-01-01
## 85 5 1 2020-01-01
## 86 3 0 2020-01-01
## 87 5 0 2020-01-01
## 88 0 0 2020-01-01
## 89 33 2 2020-01-01
## 90 5 1 2020-01-01
## 91 6 1 2020-01-01
## 92 74 9 2020-01-01
## 93 0 0 2020-01-01
## 94 0 0 2020-01-01
## 95 0 0 2020-01-01
## 96 73 2 2020-01-01
## 97 3 0 2020-01-01
## 98 13 1 2020-01-01
## 99 0 0 2020-01-01
## 100 4 0 2020-01-01
## 101 16 0 2020-01-01
## 102 13 0 2020-01-01
## 103 8 1 2020-01-01
## 104 0 0 2020-01-01
## 105 7 2 2020-01-01
## 106 10 2 2020-01-01
## 107 8 2 2020-01-01
## 108 23 1 2020-01-01
## 109 33 14 2020-01-01
## 110 96 2 2020-01-01
## 111 10 0 2020-01-01
## 112 0 0 2020-01-01
## 113 1 0 2020-01-01
## 114 7 1 2020-01-01
## 115 7 0 2020-01-01
## 116 11 1 2020-01-01
## 117 10 2 2020-01-01
## 118 14 0 2020-01-01
## 119 36 1 2020-01-01
## 120 85 1 2020-01-01
## 121 38 5 2020-01-01
## 122 8 1 2020-01-01
## 123 12 0 2020-01-01
## 124 0 0 2020-01-01
## 125 104 4 2020-01-01
## 126 14 3 2020-01-01
## 127 1 0 2020-01-01
## 128 14 2 2020-01-01
## 129 39 5 2020-01-01
## 130 7 1 2020-01-01
## 131 15 1 2020-01-01
## 132 3 2 2020-01-01
## 133 4 4 2020-01-01
## 134 33 0 2020-01-01
## 135 148 2 2020-01-01
## 136 5 2 2020-01-01
## 137 26 0 2020-01-01
## 138 12 0 2020-01-01
## 139 32 1 2020-01-01
## 140 27 0 2020-01-01
## 141 5 0 2020-01-01
## 142 69 1 2020-01-01
## 143 146 2 2020-01-01
## 144 1 0 2020-01-01
## 145 15 0 2020-01-01
## 146 8 0 2020-01-01
## 147 16 0 2020-01-01
## 148 37 0 2020-01-01
## 149 8 2 2020-01-01
## 150 83 14 2020-01-01
## 151 2 0 2020-01-01
## 152 8 0 2020-01-01
## 153 8 0 2020-01-01
## 154 10 3 2020-01-01
## 155 2 1 2020-01-01
## 156 70 1 2020-01-01
## 157 28 3 2020-01-01
## 158 14 5 2020-01-01
## 159 6 0 2020-01-01
## 160 5 1 2020-01-01
## 161 29 1 2020-01-01
## 162 150 2 2020-01-01
## 163 31 3 2020-01-01
## 164 61 12 2020-01-01
## 165 169 13 2020-01-01
## 166 38 6 2020-01-01
## 167 0 0 2020-01-01
## 168 24 4 2020-01-01
## 169 23 0 2020-01-01
## 170 194 5 2020-01-01
## 171 0 0 2020-01-01
## 172 21 5 2020-01-01
## 173 6 0 2020-01-01
## 174 11 0 2020-01-01
## 175 19 1 2020-01-01
## 176 0 0 2020-01-01
## 177 41 2 2020-01-01
## 178 13 0 2020-01-01
## 179 34 2 2020-01-01
## 180 11 0 2020-01-01
## 181 43 3 2020-01-01
## 182 9 1 2020-01-01
## 183 7 0 2020-01-01
## 184 9 0 2020-01-01
## 185 9 0 2020-01-01
## 186 19 3 2020-01-01
## 187 58 12 2020-01-01
## 188 1 0 2020-01-01
## 189 180 2 2020-01-01
## 190 2 0 2020-01-01
## 191 6 0 2020-01-01
## 192 9 0 2020-01-01
## 193 11 0 2020-01-01
## 194 72 3 2020-01-01
## 195 91 3 2020-01-01
## 196 122 11 2020-01-01
## 197 24 0 2020-01-01
## 198 21 3 2020-01-01
## 199 3 0 2020-01-01
## 200 3 0 2020-01-01
## 201 15 7 2020-01-01
## 202 399 17 2020-01-01
## 203 0 0 2020-01-01
## 204 15 0 2020-01-01
## 205 16 1 2020-01-01
## 206 0 0 2020-01-01
## 207 4 0 2020-01-01
## 208 54 0 2020-01-01
## 209 7 0 2020-01-01
## 210 12 2 2020-01-01
## 211 5 0 2020-01-01
## 212 0 0 2020-01-01
## 213 17 0 2020-01-01
## 214 7 0 2020-01-01
## 215 6 0 2020-01-01
## 216 4 0 2020-01-01
## 217 51 14 2020-01-01
## 218 46 4 2020-01-01
## 219 22 0 2020-01-01
## 220 281 32 2020-01-01
## 221 22 0 2020-01-01
## 222 2 1 2020-01-01
## 223 2 0 2020-01-01
## 224 0 0 2020-01-01
## 225 411 26 2020-01-01
## 226 10 0 2020-01-01
## 227 31 1 2020-01-01
## 228 0 0 2020-01-01
## 229 7 0 2020-01-01
## 230 0 0 2020-01-01
## 231 14 2 2020-01-01
## 232 5 0 2020-01-01
## 233 0 0 2020-01-01
## 234 13 0 2020-01-01
## 235 0 0 2020-01-01
## 236 6 0 2020-01-01
## 237 77 2 2020-01-01
## 238 7 1 2020-01-01
## 239 0 0 2020-01-01
## 240 0 0 2020-01-01
## 241 56 2 2020-01-01
## 242 0 0 2020-01-01
## 243 5 1 2020-01-01
## 244 51 6 2020-01-01
## 245 0 0 2020-01-01
## 246 0 0 2020-01-01
## 247 1 0 2020-01-01
## 248 7 0 2020-01-01
## 249 4 0 2020-01-01
## 250 56 3 2020-01-01
## 251 20 1 2020-01-01
## 252 3 0 2020-01-01
## 253 328 49 2020-01-01
## 254 0 0 2020-01-01
## 255 4 0 2020-01-01
## 256 395 32 2020-01-01
## 257 31 1 2020-01-01
## 258 5 3 2020-01-01
## 259 34 0 2020-01-01
## 260 0 0 2020-01-01
## 261 39 2 2020-01-01
## 262 5 0 2020-01-01
## 263 34 1 2020-01-01
## 264 0 0 2020-01-01
## 265 51 5 2020-01-01
## 266 1 0 2020-01-01
## 267 4 0 2020-01-01
## 268 20 0 2020-01-01
## 269 32 2 2020-01-01
## 270 0 0 2020-01-01
## 271 24 0 2020-01-01
## 272 15 0 2020-01-01
## 273 0 0 2020-01-01
## 274 52 3 2020-01-01
## 275 7 0 2020-01-01
## 276 41 0 2020-01-01
## 277 0 0 2020-01-01
## 278 9 0 2020-01-01
## 279 37 0 2020-01-01
## 280 0 0 2020-01-01
## 281 3 0 2020-01-01
## 282 1061 19 2020-01-01
## 283 5 0 2020-01-01
## 284 3 0 2020-01-01
## 285 20 0 2020-01-01
## 286 5 1 2020-01-01
## 287 6 0 2020-01-01
## 288 1 1 2020-01-01
## 289 2 0 2020-01-01
## 290 10 0 2020-01-01
## 291 2 0 2020-01-01
## 292 15 1 2020-01-01
## 293 14 1 2020-01-01
## 294 17 1 2020-01-01
## 295 26 0 2020-01-01
## 296 93 2 2020-01-01
## 297 2 1 2020-01-01
## 298 0 0 2020-01-01
## 299 146 12 2020-01-01
## 300 1 0 2020-01-01
## 301 7 1 2020-01-01
## 302 82 5 2020-01-01
## 303 58 2 2020-01-01
## 304 2 0 2020-01-01
## 305 13 0 2020-01-01
## 306 77 0 2020-01-01
## 307 5 0 2020-01-01
## 308 24 6 2020-01-01
## 309 8 0 2020-01-01
## 310 57 4 2020-01-01
## 311 13 0 2020-01-01
## 312 30 1 2020-01-01
## 313 2 0 2020-01-01
## 314 72 10 2020-01-01
## 315 0 0 2020-01-01
## 316 3 0 2020-01-01
## 317 0 0 2020-01-01
## 318 11 0 2020-01-01
## 319 10 1 2020-01-01
## 320 31 12 2020-01-01
## 321 148 5 2020-01-01
## 322 3 0 2020-01-01
## 323 0 0 2020-01-01
## 324 66 7 2020-01-01
## 325 6 1 2020-01-01
## 326 105 11 2020-01-01
## 327 2 0 2020-01-01
## 328 14 1 2020-01-01
## 329 803 39 2020-01-01
## 330 22 0 2020-01-01
## 331 6 0 2020-01-01
## 332 0 0 2020-01-01
## 333 1 0 2020-01-01
## 334 47 8 2020-01-01
## 335 6 0 2020-01-01
## 336 0 0 2020-01-01
## 337 42 0 2020-01-01
## 338 7 0 2020-01-01
## 339 7 0 2020-01-01
## 340 0 0 2020-01-01
## 341 9 1 2020-01-01
## 342 4 0 2020-01-01
## 343 22 0 2020-01-01
## 344 14 0 2020-01-01
## 345 7 3 2020-01-01
## 346 13 1 2020-01-01
## 347 22 1 2020-01-01
## 348 5 2 2020-01-01
## 349 10 2 2020-01-01
## 350 1 0 2020-01-01
## 351 69 3 2020-01-01
## 352 0 0 2020-01-01
## 353 6 0 2020-01-01
## 354 21 0 2020-01-01
## 355 87 2 2020-01-01
## 356 68 1 2020-01-01
## 357 10 4 2020-01-01
## 358 13 0 2020-01-01
## 359 21 1 2020-01-01
## 360 28 3 2020-01-01
## 361 10 0 2020-01-01
## 362 2 0 2020-01-01
## 363 12 5 2020-01-01
## 364 2 0 2020-01-01
## 365 20 3 2020-01-01
## 366 14 5 2020-01-01
## 367 6 1 2020-01-01
## 368 2 2 2020-01-01
## 369 2 0 2020-01-01
## 370 29 23 2020-01-01
## 371 52 9 2020-01-01
## 372 31 1 2020-01-01
## 373 208 48 2020-01-01
## 374 7 1 2020-01-01
## 375 45 3 2020-01-01
## 376 6 0 2020-01-01
## 377 0 0 2020-01-01
## 378 0 0 2020-01-01
## 379 0 0 2020-01-01
## 380 7 0 2020-01-01
## 381 14 0 2020-01-01
## 382 16 0 2020-01-01
## 383 15 2 2020-01-01
## 384 1 0 2020-01-01
## 385 11 0 2020-01-01
## 386 4 1 2020-01-01
## 387 5 0 2020-01-01
## 388 66 3 2020-01-01
## 389 0 0 2020-01-01
## 390 6 0 2020-01-01
## 391 5 0 2020-01-01
## 392 18 1 2020-01-01
## 393 23 1 2020-01-01
## 394 9 0 2020-01-01
## 395 5 1 2020-01-01
## 396 3 0 2020-01-01
## 397 11 0 2020-01-01
## 398 2 1 2020-01-01
## 399 3 0 2020-01-01
## 400 0 0 2020-01-01
## 401 5 1 2020-01-01
## 402 17 1 2020-01-01
## 403 31 4 2020-01-01
## 404 75 4 2020-01-01
## 405 5 1 2020-01-01
## 406 25 6 2020-01-01
## 407 9 0 2020-01-01
## 408 71 3 2020-01-01
## 409 4 0 2020-01-01
## 410 76 3 2020-01-01
## 411 5 0 2020-01-01
## 412 7 0 2020-01-01
## 413 0 0 2020-01-01
## 414 2 0 2020-01-01
## 415 9 2 2020-01-01
## 416 8 0 2020-01-01
## 417 1 1 2020-01-01
## 418 20 1 2020-01-01
## 419 3 0 2020-01-01
## 420 18 0 2020-01-01
## 421 152 9 2020-01-01
## 422 9 0 2020-01-01
## 423 0 0 2020-01-01
## 424 4 1 2020-01-01
## 425 0 0 2020-01-01
## 426 5 0 2020-01-01
## 427 34 1 2020-01-01
## 428 26 2 2020-01-01
## 429 17 1 2020-01-01
## 430 32 9 2020-01-01
## 431 12 0 2020-01-01
## 432 17 1 2020-01-01
## 433 15 1 2020-01-01
## 434 12 1 2020-01-01
## 435 17 4 2020-01-01
## 436 10 0 2020-01-01
## 437 19 1 2020-01-01
## 438 3 0 2020-01-01
## 439 5 1 2020-01-01
## 440 38 3 2020-01-01
## 441 0 0 2020-01-01
## 442 62 0 2020-01-01
## 443 11 2 2020-01-01
## 444 9 1 2020-01-01
## 445 31 10 2020-01-01
## 446 75 1 2020-01-01
## 447 10 1 2020-01-01
## 448 3 0 2020-01-01
## 449 11 0 2020-01-01
## 450 4 2 2020-01-01
## 451 5 3 2020-01-01
## 452 42 5 2020-01-01
## 453 26 5 2020-01-01
## 454 11 3 2020-01-01
## 455 36 5 2020-01-01
## 456 2 0 2020-01-01
## 457 2 0 2020-01-01
## 458 0 1 2020-01-01
## 459 14 1 2020-01-01
## 460 11 2 2020-01-01
## 461 2 1 2020-01-01
## 462 9 0 2020-01-01
## 463 1 0 2020-01-01
## 464 0 0 2020-01-01
## 465 11 0 2020-01-01
## 466 0 0 2020-01-01
## 467 0 0 2020-01-01
## 468 1901 33 2020-01-01
## 469 0 0 2020-01-01
## 470 0 0 2020-01-01
## 471 15 0 2020-01-01
## 472 0 0 2020-01-01
## 473 71 10 2020-01-01
## 474 2 0 2020-01-01
## 475 80 2 2020-01-01
## 476 3 1 2020-01-01
## 477 5 3 2020-01-01
## 478 3 0 2020-01-01
## 479 5 0 2020-01-01
## 480 0 0 2020-01-01
## 481 0 0 2020-01-01
## 482 0 0 2020-01-01
## 483 0 0 2020-01-01
## 484 5 2 2020-01-01
## 485 6 0 2020-01-01
## 486 16 0 2020-01-01
## 487 4 0 2020-01-01
## 488 45 3 2020-01-01
## 489 195 14 2020-01-01
## 490 0 0 2020-01-01
## 491 18 0 2020-01-01
## 492 32 0 2020-01-01
## 493 1 0 2020-01-01
## 494 7 1 2020-01-01
## 495 7 0 2020-01-01
## 496 2 0 2020-01-01
## 497 28 3 2020-01-01
## 498 22 0 2020-01-01
## 499 2 0 2020-01-01
## 500 3 1 2020-01-01
## 501 38 2 2020-01-01
## 502 11 4 2020-01-01
## 503 0 0 2020-01-01
## 504 0 0 2020-01-01
## 505 12 1 2020-01-01
## 506 8 1 2020-01-01
## 507 0 0 2020-01-01
## 508 9 0 2020-01-01
## 509 41 5 2020-01-01
## 510 7 0 2020-01-01
## 511 23 5 2020-01-01
## 512 0 0 2020-01-01
## 513 1 0 2020-01-01
## 514 7 0 2020-01-01
## 515 18 0 2020-01-01
## 516 1 0 2020-01-01
## 517 1 0 2020-01-01
## 518 3 0 2020-01-01
## 519 10 1 2020-01-01
## 520 2 1 2020-01-01
## 521 62 2 2020-01-01
## 522 5 0 2020-01-01
## 523 4 0 2020-01-01
## 524 0 0 2020-01-01
## 525 3 0 2020-01-01
## 526 0 0 2020-01-01
## 527 7 1 2020-01-01
## 528 60 3 2020-01-01
## 529 4 1 2020-01-01
## 530 3 0 2020-01-01
## 531 24 2 2020-01-01
## 532 33 0 2020-01-01
## 533 2 0 2020-01-01
## 534 21 2 2020-01-01
## 535 2 1 2020-01-01
## 536 0 0 2020-01-01
## 537 0 0 2020-01-01
## 538 0 0 2020-01-01
## 539 0 0 2020-01-01
## 540 8 0 2020-01-01
## 541 171 5 2020-01-01
## 542 20 0 2020-01-01
## 543 20 12 2020-01-01
## 544 6 0 2020-01-01
## 545 39 1 2020-01-01
## 546 2 0 2020-01-01
## 547 5 0 2020-01-01
## 548 0 0 2020-01-01
## 549 0 0 2020-01-01
## 550 44 3 2020-01-01
## 551 6 1 2020-01-01
## 552 9 0 2020-01-01
## 553 18 1 2020-01-01
## 554 24 1 2020-01-01
## 555 0 0 2020-01-01
## 556 3 0 2020-01-01
## 557 10 0 2020-01-01
## 558 1 0 2020-01-01
## 559 207 4 2020-01-01
## 560 15 0 2020-01-01
## 561 1 0 2020-01-01
## 562 0 0 2020-01-01
## 563 0 0 2020-01-01
## 564 7 0 2020-01-01
## 565 6 0 2020-01-01
## 566 12 0 2020-01-01
## 567 23 1 2020-01-01
## 568 0 0 2020-01-01
## 569 5 1 2020-01-01
## 570 0 0 2020-01-01
## 571 0 0 2020-01-01
## 572 2 0 2020-01-01
## 573 6 0 2020-01-01
## 574 17 4 2020-01-01
## 575 65 12 2020-01-01
## 576 10 2 2020-01-01
## 577 4 0 2020-01-01
## 578 0 0 2020-01-01
## 579 14 4 2020-01-01
## 580 5 0 2020-01-01
## 581 0 0 2020-01-01
## 582 0 0 2020-01-01
## 583 1 0 2020-01-01
## 584 24 0 2020-01-01
## 585 11 2 2020-01-01
## 586 82 1 2020-01-01
## 587 85 7 2020-01-01
## 588 6 0 2020-01-01
## 589 6 0 2020-01-01
## 590 17 2 2020-01-01
## 591 32 3 2020-01-01
## 592 5 0 2020-01-01
## 593 0 0 2020-01-01
## 594 68 6 2020-01-01
## 595 0 0 2020-01-01
## 596 5 0 2020-01-01
## 597 7 0 2020-01-01
## 598 9 0 2020-01-01
## 599 13 0 2020-01-01
## 600 5 1 2020-01-01
## 601 3 0 2020-01-01
## 602 7 1 2020-01-01
## 603 0 0 2020-01-01
## 604 2 3 2020-01-01
## 605 8 3 2020-01-01
## 606 16 1 2020-01-01
## 607 68 6 2020-01-01
## 608 4 0 2020-01-01
## 609 6 0 2020-01-01
## 610 11 0 2020-01-01
## 611 12 2 2020-01-01
## 612 13 21 2020-01-01
## 613 129 4 2020-01-01
## 614 90 2 2020-01-01
## 615 2 0 2020-01-01
## 616 14 0 2020-01-01
## 617 9 0 2020-01-01
## 618 6 0 2020-01-01
## 619 5 0 2020-01-01
## 620 10 1 2020-01-01
## 621 16 0 2020-01-01
## 622 135 4 2020-01-01
## 623 17 0 2020-01-01
## 624 152 35 2020-01-01
## 625 6 0 2020-01-01
## 626 8 0 2020-01-01
## 627 19 0 2020-01-01
## 628 2 0 2020-01-01
## 629 11 0 2020-01-01
## 630 3 1 2020-01-01
## 631 12 4 2020-01-01
## 632 44 2 2020-01-01
## 633 7 1 2020-01-01
## 634 4 1 2020-01-01
## 635 3 3 2020-01-01
## 636 0 0 2020-01-01
## 637 4 0 2020-01-01
## 638 9 0 2020-01-01
## 639 0 0 2020-01-01
## 640 15 0 2020-01-01
## 641 2 0 2020-01-01
## 642 65 9 2020-01-01
## 643 55 2 2020-01-01
## 644 13 2 2020-01-01
## 645 47 1 2020-01-01
## 646 12 1 2020-01-01
## 647 0 0 2020-01-01
## 648 5 0 2020-01-01
## 649 7 0 2020-01-01
## 650 59 3 2020-01-01
## 651 10 1 2020-01-01
## 652 3 0 2020-01-01
## 653 11 0 2020-01-01
## 654 3 1 2020-01-01
## 655 12 0 2020-01-01
## 656 5 1 2020-01-01
## 657 50 3 2020-01-01
## 658 3 0 2020-01-01
## 659 2 3 2020-01-01
## 660 4 0 2020-01-01
## 661 123 24 2020-01-01
## 662 9 0 2020-01-01
## 663 6 2 2020-01-01
## 664 0 0 2020-01-01
## 665 0 0 2020-01-01
## 666 18 2 2020-01-01
## 667 24 2 2020-01-01
## 668 27 2 2020-01-01
## 669 0 2 2020-01-01
## 670 13 0 2020-01-01
## 671 37 1 2020-01-01
## 672 11 1 2020-01-01
## 673 9 2 2020-01-01
## 674 3 0 2020-01-01
## 675 4 0 2020-01-01
## 676 18 3 2020-01-01
## 677 21 4 2020-01-01
## 678 5 1 2020-01-01
## 679 42 3 2020-01-01
## 680 38 1 2020-01-01
## 681 0 0 2020-01-01
## 682 1 0 2020-01-01
## 683 87 8 2020-01-01
## 684 0 0 2020-01-01
## 685 0 0 2020-01-01
## 686 3 0 2020-01-01
## 687 0 0 2020-01-01
## 688 11 0 2020-01-01
## 689 2 0 2020-01-01
## 690 26 1 2020-01-01
## 691 10 0 2020-01-01
## 692 27 12 2020-01-01
## 693 11 1 2020-01-01
## 694 10 0 2020-01-01
## 695 7 0 2020-01-01
## 696 26 2 2020-01-01
## 697 6 0 2020-01-01
## 698 100 3 2020-01-01
## 699 0 0 2020-01-01
## 700 3 2 2020-01-01
## 701 28 1 2020-01-01
## 702 3 0 2020-01-01
## 703 4 0 2020-01-01
## 704 0 0 2020-01-01
## 705 37 3 2020-01-01
## 706 0 0 2020-01-01
## 707 5 0 2020-01-01
## 708 41 10 2020-01-01
## 709 5 0 2020-01-01
## 710 5 0 2020-01-01
## 711 84 3 2020-01-01
## 712 0 0 2020-01-01
## 713 32 3 2020-01-01
## 714 108 13 2020-01-01
## 715 7 2 2020-01-01
## 716 4 0 2020-01-01
## 717 0 0 2020-01-01
## 718 10 2 2020-01-01
## 719 0 0 2020-01-01
## 720 2 0 2020-01-01
## 721 23 0 2020-01-01
## 722 43 4 2020-01-01
## 723 2 0 2020-01-01
## 724 0 0 2020-01-01
## 725 102 0 2020-01-01
## 726 0 0 2020-01-01
## 727 6 4 2020-01-01
## 728 7 0 2020-01-01
## 729 82 26 2020-01-01
## 730 52 27 2020-01-01
## 731 7 0 2020-01-01
## 732 23 0 2020-01-01
## 733 5 0 2020-01-01
## 734 34 0 2020-01-01
## 735 109 5 2020-01-01
## 736 27 9 2020-01-01
## 737 14 1 2020-01-01
## 738 10 0 2020-01-01
## 739 91 2 2020-01-01
## 740 1 0 2020-01-01
## 741 6 0 2020-01-01
## 742 7 0 2020-01-01
## 743 10 1 2020-01-01
## 744 5 1 2020-01-01
## 745 139 5 2020-01-01
## 746 5 0 2020-01-01
## 747 9 1 2020-01-01
## 748 17 5 2020-01-01
## 749 4 0 2020-01-01
## 750 4 0 2020-01-01
## 751 39 2 2020-01-01
## 752 5 0 2020-01-01
## 753 46 3 2020-01-01
## 754 7 0 2020-01-01
## 755 2 1 2020-01-01
## 756 1 0 2020-01-01
## 757 2 0 2020-01-01
## 758 1283 82 2020-01-01
## 759 14 1 2020-01-01
## 760 1 0 2020-01-01
## 761 2 0 2020-01-01
## 762 17 23 2020-01-01
## 763 25 3 2020-01-01
## 764 42 5 2020-01-01
## 765 17 2 2020-01-01
## 766 27 0 2020-01-01
## 767 8 0 2020-01-01
## 768 401 14 2020-01-01
## 769 25 1 2020-01-01
## 770 37 4 2020-01-01
## 771 30 2 2020-01-01
## 772 3 0 2020-01-01
## 773 14 0 2020-01-01
## 774 1 0 2020-01-01
## 775 0 0 2020-01-01
## 776 5 0 2020-01-01
## 777 9 16 2020-01-01
## 778 4 2 2020-01-01
## 779 18 7 2020-01-01
## 780 31 1 2020-01-01
## 781 34 0 2020-01-01
## 782 160 18 2020-01-01
## 783 0 0 2020-01-01
## 784 74 14 2020-01-01
## 785 5 0 2020-01-01
## 786 7 0 2020-01-01
## 787 3 0 2020-01-01
## 788 264 6 2020-01-01
## 789 0 0 2020-01-01
## 790 45 3 2020-01-01
## 791 8 0 2020-01-01
## 792 0 0 2020-01-01
## 793 4 0 2020-01-01
## 794 26 1 2020-01-01
## 795 10 0 2020-01-01
## 796 5 1 2020-01-01
## 797 7 0 2020-01-01
## 798 15 13 2020-01-01
## 799 3 1 2020-01-01
## 800 4 0 2020-01-01
## 801 10 1 2020-01-01
## 802 29 1 2020-01-01
## 803 3 0 2020-01-01
## 804 6 1 2020-01-01
## 805 31 6 2020-01-01
## 806 7 0 2020-01-01
## 807 106 5 2020-01-01
## 808 19 0 2020-01-01
## 809 11 1 2020-01-01
## 810 1 0 2020-01-01
## 811 2 1 2020-01-01
## 812 10 3 2020-01-01
## 813 28 1 2020-01-01
## 814 51 5 2020-01-01
## 815 76 2 2020-01-01
## 816 7 0 2020-01-01
## 817 0 0 2020-01-01
## 818 8 0 2020-01-01
## 819 23 2 2020-01-01
## 820 8 0 2020-01-01
## 821 2 0 2020-01-01
## 822 0 0 2020-01-01
## 823 5 4 2020-01-01
## 824 10 1 2020-01-01
## 825 11 0 2020-01-01
## 826 34 4 2020-01-01
## 827 15 0 2020-01-01
## 828 17 0 2020-01-01
## 829 14 0 2020-01-01
## 830 33 4 2020-01-01
## 831 6 0 2020-01-01
## 832 5 0 2020-01-01
## 833 8 1 2020-01-01
## 834 5 1 2020-01-01
## 835 31 3 2020-01-01
## 836 0 0 2020-01-01
## 837 48 0 2020-01-01
## 838 1 0 2020-01-01
## 839 11 0 2020-01-01
## 840 5 1 2020-01-01
## 841 21 1 2020-01-01
## 842 33 3 2020-01-01
## 843 0 0 2020-01-01
## 844 0 0 2020-01-01
## 845 17 1 2020-01-01
## 846 0 0 2020-01-01
## 847 6 0 2020-01-01
## 848 132 5 2020-01-01
## 849 36 1 2020-01-01
## 850 8 2 2020-01-01
## 851 7 0 2020-01-01
## 852 11 1 2020-01-01
## 853 2 0 2020-01-01
## 854 0 0 2020-01-01
## 855 2 0 2020-01-01
## 856 371 5 2020-01-01
## 857 79 1 2020-01-01
## 858 6 1 2020-01-01
## 859 49 3 2020-01-01
## 860 29 3 2020-01-02
## 861 0 0 2020-01-02
## 862 99 15 2020-01-02
## 863 1 0 2020-01-02
## 864 0 0 2020-01-02
## 865 9 2 2020-01-02
## 866 7 2 2020-01-02
## 867 0 0 2020-01-02
## 868 0 0 2020-01-02
## 869 0 0 2020-01-02
## 870 0 0 2020-01-02
## 871 4 0 2020-01-02
## 872 4 0 2020-01-02
## 873 71 10 2020-01-02
## 874 11 6 2020-01-02
## 875 32 2 2020-01-02
## 876 19 0 2020-01-02
## 877 1 0 2020-01-02
## 878 126 2 2020-01-02
## 879 4 1 2020-01-02
## 880 0 0 2020-01-02
## 881 0 0 2020-01-02
## 882 17 6 2020-01-02
## 883 0 0 2020-01-02
## 884 0 0 2020-01-02
## 885 2 0 2020-01-02
## 886 5 0 2020-01-02
## 887 0 0 2020-01-02
## 888 31 2 2020-01-02
## 889 3 1 2020-01-02
## 890 20 0 2020-01-02
## 891 0 0 2020-01-02
## 892 0 0 2020-01-02
## 893 0 0 2020-01-02
## 894 8 0 2020-01-02
## 895 0 0 2020-01-02
## 896 0 0 2020-01-02
## 897 8 0 2020-01-02
## 898 5 2 2020-01-02
## 899 2 0 2020-01-02
## 900 0 0 2020-01-02
## 901 12 2 2020-01-02
## 902 0 0 2020-01-02
## 903 15 6 2020-01-02
## 904 54 0 2020-01-02
## 905 15 1 2020-01-02
## 906 35 13 2020-01-02
## 907 2 0 2020-01-02
## 908 8 1 2020-01-02
## 909 12 0 2020-01-02
## 910 4 1 2020-01-02
## 911 0 0 2020-01-02
## 912 4 0 2020-01-02
## 913 75 3 2020-01-02
## 914 307 46 2020-01-02
## 915 0 0 2020-01-02
## 916 0 0 2020-01-02
## 917 0 0 2020-01-02
## 918 3 2 2020-01-02
## 919 1 0 2020-01-02
## 920 4 1 2020-01-02
## 921 14 1 2020-01-02
## 922 0 0 2020-01-02
## 923 1 1 2020-01-02
## 924 0 0 2020-01-02
## 925 3 0 2020-01-02
## 926 30 1 2020-01-02
## 927 1 0 2020-01-02
## 928 9 1 2020-01-02
## 929 14 1 2020-01-02
## 930 36 2 2020-01-02
## 931 13 0 2020-01-02
## 932 2 0 2020-01-02
## 933 10 1 2020-01-02
## 934 33 3 2020-01-02
## 935 0 0 2020-01-02
## 936 5 1 2020-01-02
## 937 18 2 2020-01-02
## 938 12 1 2020-01-02
## 939 1 0 2020-01-02
## 940 0 1 2020-01-02
## 941 100 6 2020-01-02
## 942 7 2 2020-01-02
## 943 0 0 2020-01-02
## 944 11 2 2020-01-02
## 945 11 1 2020-01-02
## 946 1 0 2020-01-02
## 947 32 1 2020-01-02
## 948 0 0 2020-01-02
## 949 0 0 2020-01-02
## 950 45 2 2020-01-02
## 951 0 0 2020-01-02
## 952 64 3 2020-01-02
## 953 19 1 2020-01-02
## 954 5 1 2020-01-02
## 955 0 0 2020-01-02
## 956 0 0 2020-01-02
## 957 6 0 2020-01-02
## 958 53 11 2020-01-02
## 959 0 0 2020-01-02
## 960 0 0 2020-01-02
## 961 7 0 2020-01-02
## 962 2 0 2020-01-02
## 963 1 0 2020-01-02
## 964 11 3 2020-01-02
## 965 26 0 2020-01-02
## 966 28 3 2020-01-02
## 967 0 0 2020-01-02
## 968 11 0 2020-01-02
## 969 12 1 2020-01-02
## 970 0 0 2020-01-02
## 971 0 0 2020-01-02
## 972 23 1 2020-01-02
## 973 0 0 2020-01-02
## 974 15 0 2020-01-02
## 975 23 6 2020-01-02
## 976 2 0 2020-01-02
## 977 16 1 2020-01-02
## 978 50 6 2020-01-02
## 979 116 21 2020-01-02
## 980 0 0 2020-01-02
## 981 0 0 2020-01-02
## 982 1 0 2020-01-02
## 983 7 0 2020-01-02
## 984 7 1 2020-01-02
## 985 2 0 2020-01-02
## 986 1 0 2020-01-02
## 987 18 0 2020-01-02
## 988 31 1 2020-01-02
## 989 0 0 2020-01-02
## 990 6 0 2020-01-02
## 991 31 1 2020-01-02
## 992 70 8 2020-01-02
## 993 12 0 2020-01-02
## 994 13 3 2020-01-02
## 995 0 0 2020-01-02
## 996 34 2 2020-01-02
## 997 6 0 2020-01-02
## 998 25 0 2020-01-02
## 999 13 0 2020-01-02
## 1000 1 0 2020-01-02
## 1001 6 0 2020-01-02
## 1002 8 1 2020-01-02
## 1003 35 2 2020-01-02
## 1004 51 42 2020-01-02
## 1005 3 0 2020-01-02
## 1006 7 1 2020-01-02
## 1007 0 0 2020-01-02
## 1008 0 0 2020-01-02
## 1009 3 0 2020-01-02
## 1010 5 0 2020-01-02
## 1011 0 0 2020-01-02
## 1012 2 0 2020-01-02
## 1013 12 0 2020-01-02
## 1014 30 2 2020-01-02
## 1015 0 0 2020-01-02
## 1016 8 0 2020-01-02
## 1017 19 3 2020-01-02
## 1018 19 2 2020-01-02
## 1019 6 1 2020-01-02
## 1020 6 1 2020-01-02
## 1021 4 2 2020-01-02
## 1022 0 1 2020-01-02
## 1023 62 2 2020-01-02
## 1024 1 0 2020-01-02
## 1025 0 0 2020-01-02
## 1026 70 2 2020-01-02
## 1027 2 0 2020-01-02
## 1028 9 1 2020-01-02
## 1029 113 3 2020-01-02
## 1030 25 2 2020-01-02
## 1031 0 1 2020-01-02
## 1032 2 0 2020-01-02
## 1033 24 1 2020-01-02
## 1034 1 0 2020-01-02
## 1035 9 0 2020-01-02
## 1036 0 3 2020-01-02
## 1037 1 0 2020-01-02
## 1038 52 0 2020-01-02
## 1039 6 0 2020-01-02
## 1040 41 0 2020-01-02
## 1041 43 2 2020-01-02
## 1042 28 0 2020-01-02
## 1043 343 4 2020-01-02
## 1044 4 0 2020-01-02
## 1045 14 1 2020-01-02
## 1046 43 1 2020-01-02
## 1047 3 0 2020-01-02
## 1048 6 1 2020-01-02
## 1049 4 2 2020-01-02
## 1050 5 0 2020-01-02
## 1051 85 6 2020-01-02
## 1052 0 0 2020-01-02
## 1053 6 0 2020-01-02
## 1054 0 0 2020-01-02
## 1055 14 4 2020-01-02
## 1056 15 0 2020-01-02
## 1057 0 0 2020-01-02
## 1058 0 0 2020-01-02
## 1059 4 4 2020-01-02
## 1060 55 5 2020-01-02
## 1061 3 0 2020-01-02
## 1062 0 0 2020-01-02
## 1063 6 0 2020-01-02
## 1064 12 0 2020-01-02
## 1065 0 0 2020-01-02
## 1066 6 0 2020-01-02
## 1067 16 0 2020-01-02
## 1068 13 2 2020-01-02
## 1069 2 1 2020-01-02
## 1070 64 0 2020-01-02
## 1071 4 0 2020-01-02
## 1072 7 0 2020-01-02
## 1073 97 5 2020-01-02
## 1074 0 0 2020-01-02
## 1075 4 0 2020-01-02
## 1076 18 1 2020-01-02
## 1077 4 0 2020-01-02
## 1078 177 3 2020-01-02
## 1079 0 0 2020-01-02
## 1080 40 3 2020-01-02
## 1081 1176 183 2020-01-02
## 1082 5 0 2020-01-02
## 1083 5 0 2020-01-02
## 1084 1 0 2020-01-02
## 1085 23 3 2020-01-02
## 1086 42 10 2020-01-02
## 1087 172 6 2020-01-02
## 1088 16 1 2020-01-02
## 1089 6 1 2020-01-02
## 1090 89 3 2020-01-02
## 1091 6 1 2020-01-02
## 1092 1 1 2020-01-02
## 1093 19 1 2020-01-02
## 1094 22 2 2020-01-02
## 1095 8 0 2020-01-02
## 1096 15 0 2020-01-02
## 1097 0 0 2020-01-02
## 1098 76 5 2020-01-02
## 1099 7 1 2020-01-02
## 1100 71 4 2020-01-02
## 1101 107 4 2020-01-02
## 1102 2 0 2020-01-02
## 1103 217 23 2020-01-02
## 1104 3 5 2020-01-02
## 1105 6 0 2020-01-02
## 1106 0 0 2020-01-02
## 1107 38 31 2020-01-02
## 1108 2 0 2020-01-02
## 1109 3 0 2020-01-02
## 1110 160 9 2020-01-02
## 1111 1 0 2020-01-02
## 1112 41 1 2020-01-02
## 1113 3 0 2020-01-02
## 1114 1 0 2020-01-02
## 1115 62 5 2020-01-02
## 1116 0 0 2020-01-02
## 1117 5 0 2020-01-02
## 1118 38 1 2020-01-02
## 1119 0 0 2020-01-02
## 1120 1 2 2020-01-02
## 1121 3 0 2020-01-02
## 1122 4 1 2020-01-02
## 1123 13 1 2020-01-02
## 1124 0 0 2020-01-02
## 1125 477 54 2020-01-02
## 1126 0 0 2020-01-02
## 1127 2 0 2020-01-02
## 1128 11 0 2020-01-02
## 1129 0 0 2020-01-02
## 1130 12 1 2020-01-02
## 1131 20 7 2020-01-02
## 1132 60 5 2020-01-02
## 1133 110 10 2020-01-02
## 1134 1 0 2020-01-02
## 1135 3 1 2020-01-02
## 1136 14 0 2020-01-02
## 1137 14 0 2020-01-02
## 1138 1811 103 2020-01-02
## 1139 3 0 2020-01-02
## 1140 1 0 2020-01-02
## 1141 4 2 2020-01-02
## 1142 99 2 2020-01-02
## 1143 46 10 2020-01-02
## 1144 4 0 2020-01-02
## 1145 160 9 2020-01-02
## 1146 1 1 2020-01-02
## 1147 2 0 2020-01-02
## 1148 9 0 2020-01-02
## 1149 96 0 2020-01-02
## 1150 19 0 2020-01-02
## 1151 16 17 2020-01-02
## 1152 23 1 2020-01-02
## 1153 5 0 2020-01-02
## 1154 26 1 2020-01-02
## 1155 216 43 2020-01-02
## 1156 0 0 2020-01-02
## 1157 34 5 2020-01-02
## 1158 3 0 2020-01-02
## 1159 69 8 2020-01-02
## 1160 6 1 2020-01-02
## 1161 9 1 2020-01-02
## 1162 3 0 2020-01-02
## 1163 0 0 2020-01-02
## 1164 12 1 2020-01-02
## 1165 36 5 2020-01-02
## 1166 0 0 2020-01-02
## 1167 1 0 2020-01-02
## 1168 0 0 2020-01-02
## 1169 4 0 2020-01-02
## 1170 20 0 2020-01-02
## 1171 17 0 2020-01-02
## 1172 37 21 2020-01-02
## 1173 3 0 2020-01-02
## 1174 5 0 2020-01-02
## 1175 374 15 2020-01-02
## 1176 24 1 2020-01-02
## 1177 1 0 2020-01-02
## 1178 0 0 2020-01-02
## 1179 0 0 2020-01-02
## 1180 0 0 2020-01-02
## 1181 5 1 2020-01-02
## 1182 4 0 2020-01-02
## 1183 67 1 2020-01-02
## 1184 1650 299 2020-01-02
## 1185 24 1 2020-01-02
## 1186 0 0 2020-01-02
## 1187 1 0 2020-01-02
## 1188 5 1 2020-01-02
## 1189 0 1 2020-01-02
## 1190 0 0 2020-01-02
## 1191 3 0 2020-01-02
## 1192 3 0 2020-01-02
## 1193 4 1 2020-01-02
## 1194 20 0 2020-01-02
## 1195 3 0 2020-01-01
## 1196 3 0 2020-01-01
## 1197 20 3 2020-01-01
## 1198 0 0 2020-01-01
## 1199 22 2 2020-01-01
## 1200 0 0 2020-01-01
## 1201 170 7 2020-01-01
## 1202 0 0 2020-01-01
## 1203 9 0 2020-01-01
## 1204 23 1 2020-01-01
## 1205 40 1 2020-01-01
## 1206 66 0 2020-01-01
## 1207 6 0 2020-01-01
## 1208 36 1 2020-01-01
## 1209 2 0 2020-01-01
## 1210 99 7 2020-01-01
## 1211 8 0 2020-01-01
## 1212 10 0 2020-01-01
## 1213 19 1 2020-01-01
## 1214 9 3 2020-01-01
## 1215 13 0 2020-01-01
## 1216 80 15 2020-01-01
## 1217 287 25 2020-01-01
## 1218 1 0 2020-01-01
## 1219 11 0 2020-01-01
## 1220 35 1 2020-01-01
## 1221 13 2 2020-01-01
## 1222 10 0 2020-01-01
## 1223 64 2 2020-01-01
## 1224 5 0 2020-01-01
## 1225 0 0 2020-01-01
## 1226 1 1 2020-01-01
## 1227 38 1 2020-01-01
## 1228 1 0 2020-01-01
## 1229 43 2 2020-01-01
## 1230 20 3 2020-01-01
## 1231 5 1 2020-01-01
## 1232 13 0 2020-01-01
## 1233 49 1 2020-01-01
## 1234 263 13 2020-01-01
## 1235 4 3 2020-01-01
## 1236 6 1 2020-01-01
## 1237 35 1 2020-01-01
## 1238 3 0 2020-01-01
## 1239 0 0 2020-01-01
## 1240 8 1 2020-01-01
## 1241 5 1 2020-01-01
## 1242 14 1 2020-01-01
## 1243 19 1 2020-01-01
## 1244 30 2 2020-01-01
## 1245 37 0 2020-01-01
## 1246 15 0 2020-01-01
## 1247 3 1 2020-01-01
## 1248 2 0 2020-01-01
## 1249 8 2 2020-01-01
## 1250 25 0 2020-01-01
## 1251 12 0 2020-01-01
## 1252 4 0 2020-01-01
## 1253 3 0 2020-01-01
## 1254 2 0 2020-01-01
## 1255 70 2 2020-01-01
## 1256 7 1 2020-01-01
## 1257 5 0 2020-01-01
## 1258 1 0 2020-01-01
## 1259 31 3 2020-01-01
## 1260 5 0 2020-01-01
## 1261 4 0 2020-01-01
## 1262 0 0 2020-01-01
## 1263 1 0 2020-01-01
## 1264 16 0 2020-01-01
## 1265 17 3 2020-01-01
## 1266 10 0 2020-01-01
## 1267 73 3 2020-01-01
## 1268 0 0 2020-01-01
## 1269 17 3 2020-01-01
## 1270 208 19 2020-01-01
## 1271 12 0 2020-01-01
## 1272 0 0 2020-01-01
## 1273 26 3 2020-01-01
## 1274 9 0 2020-01-01
## 1275 9 0 2020-01-01
## 1276 11 0 2020-01-01
## 1277 37 0 2020-01-01
## 1278 10 2 2020-01-01
## 1279 9 1 2020-01-01
## 1280 5 0 2020-01-01
## 1281 12 0 2020-01-01
## 1282 26 3 2020-01-01
## 1283 13 0 2020-01-01
## 1284 0 0 2020-01-01
## 1285 11 2 2020-01-01
## 1286 6 0 2020-01-01
## 1287 9 0 2020-01-01
## 1288 12 0 2020-01-01
## 1289 1 0 2020-01-01
## 1290 46 2 2020-01-01
## 1291 17 2 2020-01-01
## 1292 7 0 2020-01-01
## 1293 4 1 2020-01-01
## 1294 14 1 2020-01-01
## 1295 0 0 2020-01-01
## 1296 46 0 2020-01-01
## 1297 38 2 2020-01-01
## 1298 5 0 2020-01-01
## 1299 103 1 2020-01-01
## 1300 7 2 2020-01-01
## 1301 11 0 2020-01-01
## 1302 3 0 2020-01-01
## 1303 4 1 2020-01-01
## 1304 95 6 2020-01-01
## 1305 4 0 2020-01-01
## 1306 0 0 2020-01-01
## 1307 26 0 2020-01-01
## 1308 1 0 2020-01-01
## 1309 20 0 2020-01-01
## 1310 0 0 2020-01-01
## 1311 78 5 2020-01-01
## 1312 35 1 2020-01-01
## 1313 6 1 2020-01-01
## 1314 21 4 2020-01-01
## 1315 53 1 2020-01-01
## 1316 3 0 2020-01-01
## 1317 73 1 2020-01-01
## 1318 127 5 2020-01-01
## 1319 29 1 2020-01-01
## 1320 10 2 2020-01-01
## 1321 3 1 2020-01-01
## 1322 2 0 2020-01-01
## 1323 12 0 2020-01-01
## 1324 59 1 2020-01-01
## 1325 5 0 2020-01-01
## 1326 27 7 2020-01-01
## 1327 14 0 2020-01-01
## 1328 49 5 2020-01-01
## 1329 8 1 2020-01-01
## 1330 101 1 2020-01-01
## 1331 52 2 2020-01-01
## 1332 1 0 2020-01-01
## 1333 1 0 2020-01-01
## 1334 5 0 2020-01-01
## 1335 4 0 2020-01-01
## 1336 7 1 2020-01-01
## 1337 6 1 2020-01-01
## 1338 19 8 2020-01-01
## 1339 4 0 2020-01-01
## 1340 3 0 2020-01-01
## 1341 0 0 2020-01-01
## 1342 1 0 2020-01-01
## 1343 6 0 2020-01-01
## 1344 2 0 2020-01-01
## 1345 0 0 2020-01-01
## 1346 4 0 2020-01-01
## 1347 20 0 2020-01-01
## 1348 16 3 2020-01-01
## 1349 9 0 2020-01-01
## 1350 35 4 2020-01-01
## 1351 6 1 2020-01-01
## 1352 7 0 2020-01-01
## 1353 1 0 2020-01-01
## 1354 1 0 2020-01-01
## 1355 4 0 2020-01-01
## 1356 44 1 2020-01-01
## 1357 0 0 2020-01-01
## 1358 23 0 2020-01-01
## 1359 14 0 2020-01-01
## 1360 1 0 2020-01-02
## 1361 0 0 2020-01-02
## 1362 20 1 2020-01-02
## 1363 6 0 2020-01-02
## 1364 6 1 2020-01-02
## 1365 36 2 2020-01-02
## 1366 0 0 2020-01-02
## 1367 1 0 2020-01-02
## 1368 0 0 2020-01-02
## 1369 3 0 2020-01-02
## 1370 9 3 2020-01-02
## 1371 5 2 2020-01-02
## 1372 38 0 2020-01-02
## 1373 24 1 2020-01-02
## 1374 5 1 2020-01-02
## 1375 2 1 2020-01-02
## 1376 11 1 2020-01-02
## 1377 1 0 2020-01-02
## 1378 34 2 2020-01-02
## 1379 36 3 2020-01-02
## 1380 36 13 2020-01-02
## 1381 16 0 2020-01-02
## 1382 0 0 2020-01-02
## 1383 2 0 2020-01-02
## 1384 0 0 2020-01-02
## 1385 3 0 2020-01-02
## 1386 6 2 2020-01-02
## 1387 0 0 2020-01-02
## 1388 6 0 2020-01-02
## 1389 19 0 2020-01-02
## 1390 16 0 2020-01-02
## 1391 9 1 2020-01-02
## 1392 4 0 2020-01-02
## 1393 237 10 2020-01-02
## 1394 1 0 2020-01-02
## 1395 23 2 2020-01-02
## 1396 2 1 2020-01-02
## 1397 6 0 2020-01-02
## 1398 1 0 2020-01-02
## 1399 0 0 2020-01-02
## 1400 47 6 2020-01-02
## 1401 14 0 2020-01-02
## 1402 3 0 2020-01-02
## 1403 5 0 2020-01-02
## 1404 2 1 2020-01-02
## 1405 5 4 2020-01-02
## 1406 9 3 2020-01-02
## 1407 0 0 2020-01-02
## 1408 0 0 2020-01-02
## 1409 0 0 2020-01-02
## 1410 2 0 2020-01-02
## 1411 15 4 2020-01-02
## 1412 2 0 2020-01-02
## 1413 15 2 2020-01-02
## 1414 21 0 2020-01-02
## 1415 4 0 2020-01-02
## 1416 5 0 2020-01-02
## 1417 28 5 2020-01-02
## 1418 26 0 2020-01-02
## 1419 35 1 2020-01-02
## 1420 2 0 2020-01-02
## 1421 0 0 2020-01-02
## 1422 18 4 2020-01-02
## 1423 14 0 2020-01-02
## 1424 8 0 2020-01-02
## 1425 0 1 2020-01-02
## 1426 0 0 2020-01-02
## 1427 4 3 2020-01-02
## 1428 0 0 2020-01-02
## 1429 0 0 2020-01-02
## 1430 0 0 2020-01-02
## 1431 0 0 2020-01-02
## 1432 30 9 2020-01-02
## 1433 12 1 2020-01-02
## 1434 1 0 2020-01-02
## 1435 0 0 2020-01-02
## 1436 513 41 2020-01-02
## 1437 3 0 2020-01-02
## 1438 24 0 2020-01-02
## 1439 4 1 2020-01-02
## 1440 2 0 2020-01-02
## 1441 6 2 2020-01-02
## 1442 115 6 2020-01-02
## 1443 2 0 2020-01-02
## 1444 5 1 2020-01-02
## 1445 0 0 2020-01-02
## 1446 2 1 2020-01-02
## 1447 0 0 2020-01-02
## 1448 19 0 2020-01-02
## 1449 6 2 2020-01-02
## 1450 29 1 2020-01-02
## 1451 2 0 2020-01-02
## 1452 21 3 2020-01-02
## 1453 1 0 2020-01-02
## 1454 0 0 2020-01-02
## 1455 0 0 2020-01-02
## 1456 0 0 2020-01-02
## 1457 3 0 2020-01-02
## 1458 12 0 2020-01-02
## 1459 24 5 2020-01-02
## 1460 10 0 2020-01-02
## 1461 210 41 2020-01-02
## 1462 9 1 2020-01-02
## 1463 0 0 2020-01-02
## 1464 63 7 2020-01-02
## 1465 0 0 2020-01-02
## 1466 7 0 2020-01-02
## 1467 0 0 2020-01-02
## 1468 9 0 2020-01-02
## 1469 5 2 2020-01-02
## 1470 13 7 2020-01-02
## 1471 35 8 2020-01-02
## 1472 15 1 2020-01-02
## 1473 1 1 2020-01-02
## 1474 12 2 2020-01-02
## 1475 0 0 2020-01-02
## 1476 4 0 2020-01-02
## 1477 64 2 2020-01-02
## 1478 2 0 2020-01-02
## 1479 32 1 2020-01-02
## 1480 28 2 2020-01-02
## 1481 1 0 2020-01-02
## 1482 5 1 2020-01-02
## 1483 7 1 2020-01-02
## 1484 6 0 2020-01-02
## 1485 6 0 2020-01-02
## 1486 67 3 2020-01-02
## 1487 4 0 2020-01-02
## 1488 0 0 2020-01-02
## 1489 6 0 2020-01-02
## 1490 151 8 2020-01-02
## 1491 7 3 2020-01-02
## 1492 10 0 2020-01-02
## 1493 0 0 2020-01-02
## 1494 3 2 2020-01-02
## 1495 0 0 2020-01-02
## 1496 0 0 2020-01-02
## 1497 45 2 2020-01-02
## 1498 5 0 2020-01-02
## 1499 59 43 2020-01-02
## 1500 3 0 2020-01-02
## 1501 1 0 2020-01-02
## 1502 18 0 2020-01-02
## 1503 43 3 2020-01-02
## 1504 0 0 2020-01-02
## 1505 31 2 2020-01-02
## 1506 10 1 2020-01-02
## 1507 10 0 2020-01-02
## 1508 3 0 2020-01-02
## 1509 0 0 2020-01-02
## 1510 4 3 2020-01-02
## 1511 43 1 2020-01-02
## 1512 3 2 2020-01-02
## 1513 0 0 2020-01-02
## 1514 0 0 2020-01-02
## 1515 10 5 2020-01-02
## 1516 11 2 2020-01-02
## 1517 0 0 2020-01-02
## 1518 11 2 2020-01-02
## 1519 20 1 2020-01-02
## 1520 0 0 2020-01-02
## 1521 2 0 2020-01-02
## 1522 0 0 2020-01-02
## 1523 0 0 2020-01-02
## 1524 3 0 2020-01-02
## 1525 4 0 2020-01-02
## 1526 41 0 2020-01-02
## 1527 70 1 2020-01-02
## 1528 0 0 2020-01-02
## 1529 4 0 2020-01-02
## 1530 88 14 2020-01-02
## 1531 0 0 2020-01-02
## 1532 0 0 2020-01-02
## 1533 0 0 2020-01-02
## 1534 3 0 2020-01-02
## 1535 2 1 2020-01-02
## 1536 5 0 2020-01-02
## 1537 8 0 2020-01-02
## 1538 29 1 2020-01-02
## 1539 3 1 2020-01-02
## 1540 0 2 2020-01-02
## 1541 12 1 2020-01-02
## 1542 3 1 2020-01-02
## 1543 0 0 2020-01-02
## 1544 8 0 2020-01-02
## 1545 45 1 2020-01-02
## 1546 7 0 2020-01-02
## 1547 1 0 2020-01-02
## 1548 48 0 2020-01-02
## 1549 5 0 2020-01-02
## 1550 57 2 2020-01-02
## 1551 61 15 2020-01-02
## 1552 26 2 2020-01-02
## 1553 5 1 2020-01-02
## 1554 0 0 2020-01-02
## 1555 11 1 2020-01-02
## 1556 9 1 2020-01-02
## 1557 4 3 2020-01-02
## 1558 8 0 2020-01-02
## 1559 0 0 2020-01-02
## 1560 59 42 2020-01-02
## 1561 14 0 2020-01-02
## 1562 162 8 2020-01-02
## 1563 0 0 2020-01-02
## 1564 3 0 2020-01-02
## 1565 1 0 2020-01-02
## 1566 12 1 2020-01-02
## 1567 2 1 2020-01-02
## 1568 0 0 2020-01-02
## 1569 3 0 2020-01-02
## 1570 5 0 2020-01-02
## 1571 49 3 2020-01-02
## 1572 2 0 2020-01-02
## 1573 69 9 2020-01-02
## 1574 2 1 2020-01-02
## 1575 13 0 2020-01-02
## 1576 49 3 2020-01-02
## 1577 16 1 2020-01-02
## 1578 5 0 2020-01-02
## 1579 0 0 2020-01-02
## 1580 18 0 2020-01-02
## 1581 0 0 2020-01-02
## 1582 1 1 2020-01-02
## 1583 2 1 2020-01-02
## 1584 2593 233 2020-01-02
## 1585 4 0 2020-01-02
## 1586 48 2 2020-01-02
## 1587 14 0 2020-01-02
## 1588 0 0 2020-01-02
## 1589 6 0 2020-01-02
## 1590 0 0 2020-01-02
## 1591 0 0 2020-01-02
## 1592 1 0 2020-01-02
## 1593 0 0 2020-01-02
## 1594 0 0 2020-01-02
## 1595 2 0 2020-01-02
## 1596 0 0 2020-01-02
## 1597 3 0 2020-01-02
## 1598 14 5 2020-01-02
## 1599 34 2 2020-01-02
## 1600 0 0 2020-01-02
## 1601 0 0 2020-01-02
## 1602 8 2 2020-01-02
## 1603 0 0 2020-01-02
## 1604 0 0 2020-01-02
## 1605 4 0 2020-01-02
## 1606 0 0 2020-01-02
## 1607 6 5 2020-01-02
## 1608 53 3 2020-01-02
## 1609 107 8 2020-01-02
## 1610 1 0 2020-01-02
## 1611 3 0 2020-01-02
## 1612 11 1 2020-01-02
## 1613 15 5 2020-01-02
## 1614 0 0 2020-01-02
## 1615 10 1 2020-01-02
## 1616 2 0 2020-01-02
## 1617 3 0 2020-01-02
## 1618 8 2 2020-01-02
## 1619 148 51 2020-01-02
## 1620 30 2 2020-01-02
## 1621 7 0 2020-01-02
## 1622 0 0 2020-01-02
## 1623 0 0 2020-01-02
## 1624 10 2 2020-01-02
## 1625 7 1 2020-01-02
## 1626 28 0 2020-01-02
## 1627 3 0 2020-01-02
## 1628 7 0 2020-01-02
## 1629 5 0 2020-01-02
## 1630 7 0 2020-01-02
## 1631 5 1 2020-01-02
## 1632 1106 47 2020-01-02
## 1633 83 9 2020-01-02
## 1634 0 0 2020-01-02
## 1635 2 0 2020-01-02
## 1636 15 0 2020-01-02
## 1637 0 0 2020-01-02
## 1638 0 0 2020-01-02
## 1639 18 1 2020-01-02
## 1640 5 0 2020-01-02
## 1641 76 5 2020-01-02
## 1642 0 0 2020-01-02
## 1643 41 2 2020-01-02
## 1644 5 1 2020-01-02
## 1645 0 0 2020-01-02
## 1646 52 24 2020-01-02
## 1647 43 3 2020-01-02
## 1648 7 0 2020-01-02
## 1649 6 0 2020-01-02
## 1650 33 12 2020-01-02
## 1651 9 0 2020-01-02
## 1652 0 0 2020-01-02
## 1653 24 5 2020-01-02
## 1654 23 0 2020-01-02
## 1655 39 2 2020-01-02
## 1656 12 3 2020-01-02
## 1657 24 6 2020-01-02
## 1658 1191 70 2020-01-02
## 1659 7 0 2020-01-02
## 1660 46 3 2020-01-02
## 1661 6 0 2020-01-02
## 1662 38 2 2020-01-02
## 1663 23 0 2020-01-02
## 1664 1 0 2020-01-02
## 1665 0 0 2020-01-02
## 1666 4 0 2020-01-02
## 1667 6 0 2020-01-02
## 1668 3 0 2020-01-02
## 1669 0 0 2020-01-02
## 1670 7 1 2020-01-02
## 1671 74 13 2020-01-02
## 1672 8 0 2020-01-02
## 1673 10 0 2020-01-02
## 1674 58 0 2020-01-02
## 1675 0 0 2020-01-02
## 1676 0 0 2020-01-02
## 1677 5 0 2020-01-02
## 1678 3 0 2020-01-02
## 1679 0 0 2020-01-02
## 1680 21 0 2020-01-02
## 1681 5 0 2020-01-02
## 1682 99 17 2020-01-02
## 1683 16 4 2020-01-02
## 1684 4 1 2020-01-02
## 1685 34 1 2020-01-02
## 1686 3 0 2020-01-02
## 1687 2 0 2020-01-02
## 1688 20 2 2020-01-02
## 1689 18 1 2020-01-02
## 1690 16 0 2020-01-02
## 1691 18 0 2020-01-02
## 1692 9 0 2020-01-02
## 1693 7 0 2020-01-02
## 1694 2 0 2020-01-02
## 1695 0 0 2020-01-02
## 1696 8 0 2020-01-02
## 1697 69 5 2020-01-02
## 1698 0 0 2020-01-02
## 1699 109 17 2020-01-02
## 1700 0 0 2020-01-02
## 1701 3 0 2020-01-02
## 1702 10 3 2020-01-02
## 1703 4 0 2020-01-02
## 1704 0 0 2020-01-02
## 1705 4 0 2020-01-02
## 1706 0 0 2020-01-02
## 1707 0 0 2020-01-02
## 1708 16 2 2020-01-02
## 1709 1 0 2020-01-02
## 1710 12 0 2020-01-02
## 1711 18 3 2020-01-02
## 1712 15 0 2020-01-02
## 1713 17 1 2020-01-02
## 1714 0 0 2020-01-02
## 1715 0 0 2020-01-02
## 1716 0 0 2020-01-02
## 1717 1 0 2020-01-02
## 1718 14 0 2020-01-02
## 1719 8 0 2020-01-02
## 1720 1 0 2020-01-02
## 1721 6 1 2020-01-02
## 1722 34 2 2020-01-02
## 1723 0 0 2020-01-02
## 1724 22 0 2020-01-02
## 1725 0 0 2020-01-02
## 1726 0 0 2020-01-02
## 1727 10 0 2020-01-02
## 1728 0 0 2020-01-02
## 1729 3 0 2020-01-02
## 1730 8 0 2020-01-02
## 1731 1 0 2020-01-02
## 1732 0 0 2020-01-02
## 1733 0 0 2020-01-02
## 1734 9 4 2020-01-02
## 1735 14 0 2020-01-02
## 1736 20 0 2020-01-02
## 1737 139 9 2020-01-02
## 1738 0 0 2020-01-02
## 1739 1 1 2020-01-02
## 1740 4 0 2020-01-02
## 1741 7 0 2020-01-02
## 1742 6 0 2020-01-02
## 1743 0 0 2020-01-02
## 1744 10 0 2020-01-02
## 1745 2 1 2020-01-02
## 1746 10 1 2020-01-02
## 1747 7 0 2020-01-02
## 1748 0 0 2020-01-02
## 1749 2 0 2020-01-02
## 1750 5 0 2020-01-02
## 1751 744 44 2020-01-02
## 1752 0 0 2020-01-02
## 1753 0 0 2020-01-02
## 1754 0 3 2020-01-02
## 1755 0 0 2020-01-02
## 1756 24 1 2020-01-02
## 1757 4 0 2020-01-02
## 1758 0 0 2020-01-02
## 1759 0 0 2020-01-02
## 1760 18 5 2020-01-02
## 1761 3 0 2020-01-02
## 1762 6 0 2020-01-02
## 1763 1 0 2020-01-02
## 1764 4 1 2020-01-02
## 1765 2 0 2020-01-02
## 1766 16 1 2020-01-02
## 1767 0 0 2020-01-02
## 1768 36 0 2020-01-02
## 1769 0 0 2020-01-02
## 1770 5 1 2020-01-02
## 1771 9 0 2020-01-02
## 1772 4 0 2020-01-02
## 1773 0 0 2020-01-02
## 1774 45 1 2020-01-02
## 1775 0 0 2020-01-02
## 1776 28 1 2020-01-02
## 1777 3 0 2020-01-02
## 1778 22 1 2020-01-02
## 1779 53 14 2020-01-02
## 1780 23 0 2020-01-02
## 1781 0 0 2020-01-02
## 1782 0 0 2020-01-02
## 1783 0 0 2020-01-02
## 1784 14 0 2020-01-02
## 1785 6 1 2020-01-02
## 1786 0 0 2020-01-02
## 1787 4 0 2020-01-02
## 1788 2 0 2020-01-02
## 1789 39 3 2020-01-02
## 1790 12 1 2020-01-02
## 1791 0 0 2020-01-02
## 1792 3 1 2020-01-02
## 1793 26 1 2020-01-02
## 1794 1 0 2020-01-02
## 1795 11 1 2020-01-02
## 1796 1 0 2020-01-02
## 1797 26633 3613 2020-01-02
## 1798 0 0 2020-01-02
## 1799 7 2 2020-01-02
## 1800 64 1 2020-01-02
## 1801 37 3 2020-01-02
## 1802 12 2 2020-01-02
## 1803 8 0 2020-01-02
## 1804 1 0 2020-01-02
## 1805 0 0 2020-01-02
## 1806 13 1 2020-01-02
## 1807 0 0 2020-01-02
## 1808 13 0 2020-01-02
## 1809 0 0 2020-01-02
## 1810 0 0 2020-01-02
## 1811 0 0 2020-01-02
## 1812 20 3 2020-01-02
## 1813 3 0 2020-01-02
## 1814 3 1 2020-01-02
## 1815 81 3 2020-01-02
## 1816 6 1 2020-01-02
## 1817 18 2 2020-01-02
## 1818 0 0 2020-01-02
## 1819 0 0 2020-01-02
## 1820 0 0 2020-01-02
## 1821 4 0 2020-01-02
## 1822 12 2 2020-01-02
## 1823 0 0 2020-01-02
## 1824 14 0 2020-01-02
## 1825 8 0 2020-01-02
## 1826 0 0 2020-01-02
## 1827 95 3 2020-01-02
## 1828 8 0 2020-01-02
## 1829 26 2 2020-01-02
## 1830 38 1 2020-01-02
## 1831 2 0 2020-01-02
## 1832 0 0 2020-01-02
## 1833 3 0 2020-01-02
## 1834 4 0 2020-01-02
## 1835 3 0 2020-01-02
## 1836 0 0 2020-01-02
## 1837 116 1 2020-01-02
## 1838 110 10 2020-01-02
## 1839 5 1 2020-01-02
## 1840 0 0 2020-01-02
## 1841 11 1 2020-01-02
## 1842 53 8 2020-01-02
## 1843 11 0 2020-01-02
## 1844 4 0 2020-01-02
## 1845 7 1 2020-01-02
## 1846 9 0 2020-01-02
## 1847 0 0 2020-01-02
## 1848 4 1 2020-01-02
## 1849 8 1 2020-01-02
## 1850 20 2 2020-01-02
## 1851 0 0 2020-01-02
## 1852 32 0 2020-01-02
## 1853 0 0 2020-01-02
## 1854 99 2 2020-01-02
## 1855 0 0 2020-01-02
## 1856 9 2 2020-01-02
## 1857 9 0 2020-01-02
## 1858 0 0 2020-01-02
## 1859 7 2 2020-01-02
## 1860 12 1 2020-01-03
## 1861 189 8 2020-01-03
## 1862 3 0 2020-01-03
## 1863 1 0 2020-01-03
## 1864 0 0 2020-01-03
## 1865 1 1 2020-01-03
## 1866 12 0 2020-01-03
## 1867 12 0 2020-01-03
## 1868 4 0 2020-01-03
## 1869 19 4 2020-01-03
## 1870 28 3 2020-01-03
## 1871 246 5 2020-01-03
## 1872 14 0 2020-01-03
## 1873 16 2 2020-01-03
## 1874 28 2 2020-01-03
## 1875 0 0 2020-01-03
## 1876 20 8 2020-01-03
## 1877 0 0 2020-01-03
## 1878 0 0 2020-01-03
## 1879 8 0 2020-01-03
## 1880 7 1 2020-01-03
## 1881 9 1 2020-01-03
## 1882 0 0 2020-01-03
## 1883 9 0 2020-01-03
## 1884 10 0 2020-01-03
## 1885 5 1 2020-01-03
## 1886 47 2 2020-01-03
## 1887 26 0 2020-01-03
## 1888 14 1 2020-01-03
## 1889 0 0 2020-01-03
## 1890 42 13 2020-01-03
## 1891 4 0 2020-01-03
## 1892 5 0 2020-01-03
## 1893 8 0 2020-01-03
## 1894 1412 162 2020-01-03
## 1895 128 13 2020-01-03
## 1896 208 28 2020-01-03
## 1897 19 0 2020-01-03
## 1898 6 3 2020-01-03
## 1899 58 4 2020-01-03
## 1900 4 0 2020-01-03
## 1901 2 0 2020-01-03
## 1902 54 1 2020-01-03
## 1903 0 0 2020-01-03
## 1904 26 3 2020-01-03
## 1905 2 0 2020-01-03
## 1906 12 0 2020-01-03
## 1907 287 6 2020-01-03
## 1908 61 13 2020-01-03
## 1909 1168 117 2020-01-03
## 1910 0 0 2020-01-03
## 1911 4 0 2020-01-03
## 1912 0 0 2020-01-03
## 1913 4 1 2020-01-03
## 1914 23 21 2020-01-03
## 1915 0 0 2020-01-03
## 1916 0 0 2020-01-03
## 1917 38 2 2020-01-03
## 1918 27 8 2020-01-03
## 1919 5 0 2020-01-03
## 1920 12 3 2020-01-03
## 1921 9 0 2020-01-03
## 1922 9 1 2020-01-03
## 1923 9 0 2020-01-03
## 1924 33 2 2020-01-03
## 1925 21 0 2020-01-03
## 1926 266 24 2020-01-03
## 1927 2 0 2020-01-03
## 1928 0 0 2020-01-03
## 1929 12 1 2020-01-03
## 1930 61 1 2020-01-03
## 1931 4 1 2020-01-03
## 1932 4 0 2020-01-03
## 1933 30 3 2020-01-03
## 1934 0 2 2020-01-03
## 1935 11 0 2020-01-03
## 1936 157 11 2020-01-03
## 1937 6 0 2020-01-02
## 1938 4 2 2020-01-02
## 1939 17 3 2020-01-02
## 1940 11 0 2020-01-02
## 1941 32 4 2020-01-02
## 1942 0 0 2020-01-02
## 1943 7 6 2020-01-02
## 1944 3 0 2020-01-02
## 1945 5 2 2020-01-02
## 1946 1 0 2020-01-02
## 1947 10 1 2020-01-02
## 1948 31 2 2020-01-02
## 1949 4 0 2020-01-02
## 1950 9 0 2020-01-02
## 1951 52 1 2020-01-02
## 1952 7 0 2020-01-02
## 1953 3 1 2020-01-02
## 1954 13 0 2020-01-02
## 1955 15 0 2020-01-02
## 1956 15 0 2020-01-02
## 1957 9 10 2020-01-02
## 1958 7 0 2020-01-02
## 1959 63 2 2020-01-02
## 1960 3 0 2020-01-02
## 1961 4 0 2020-01-02
## 1962 9 1 2020-01-02
## 1963 100 5 2020-01-02
## 1964 1 0 2020-01-02
## 1965 18 0 2020-01-02
## 1966 0 0 2020-01-02
## 1967 3 0 2020-01-02
## 1968 12 1 2020-01-02
## 1969 154 21 2020-01-02
## 1970 11 0 2020-01-02
## 1971 13 0 2020-01-02
## 1972 54 3 2020-01-02
## 1973 5 0 2020-01-02
## 1974 1 0 2020-01-02
## 1975 35 4 2020-01-02
## 1976 20 3 2020-01-02
## 1977 17 2 2020-01-02
## 1978 7 7 2020-01-02
## 1979 6 0 2020-01-02
## 1980 26 4 2020-01-02
## 1981 6 1 2020-01-02
## 1982 61 12 2020-01-02
## 1983 4 0 2020-01-02
## 1984 5 0 2020-01-02
## 1985 15 0 2020-01-02
## 1986 0 0 2020-01-02
## 1987 39 3 2020-01-02
## 1988 0 0 2020-01-02
## 1989 24 4 2020-01-02
## 1990 4 0 2020-01-02
## 1991 13 3 2020-01-02
## 1992 7 3 2020-01-02
## 1993 11 1 2020-01-02
## 1994 7 5 2020-01-02
## 1995 0 0 2020-01-02
## 1996 9 2 2020-01-02
## 1997 8 0 2020-01-02
## 1998 7 0 2020-01-02
## 1999 5 3 2020-01-02
## 2000 1 1 2020-01-02
## 2001 7 2 2020-01-02
## 2002 25 0 2020-01-02
## 2003 2 0 2020-01-02
## 2004 3 0 2020-01-02
## 2005 0 0 2020-01-02
## 2006 4 0 2020-01-02
## 2007 3 0 2020-01-02
## 2008 12 1 2020-01-02
## 2009 15 2 2020-01-02
## 2010 17 1 2020-01-02
## 2011 9 0 2020-01-02
## 2012 42 3 2020-01-02
## 2013 9 0 2020-01-02
## 2014 171 3 2020-01-02
## 2015 5 0 2020-01-02
## 2016 4 0 2020-01-02
## 2017 6 1 2020-01-02
## 2018 515 5 2020-01-02
## 2019 8 2 2020-01-02
## 2020 8 0 2020-01-02
## 2021 5 0 2020-01-02
## 2022 949 79 2020-01-02
## 2023 4 0 2020-01-02
## 2024 0 0 2020-01-02
## 2025 5 0 2020-01-02
## 2026 19 0 2020-01-02
## 2027 15 4 2020-01-02
## 2028 9 1 2020-01-02
## 2029 9 2 2020-01-02
## 2030 6 2 2020-01-02
## 2031 10 0 2020-01-02
## 2032 0 0 2020-01-02
## 2033 18 3 2020-01-02
## 2034 3 0 2020-01-02
## 2035 94 51 2020-01-02
## 2036 18 1 2020-01-02
## 2037 38 2 2020-01-02
## 2038 5 2 2020-01-02
## 2039 6 3 2020-01-02
## 2040 20 0 2020-01-02
## 2041 4 1 2020-01-02
## 2042 32 2 2020-01-02
## 2043 10 1 2020-01-02
## 2044 4 1 2020-01-02
## 2045 4 1 2020-01-02
## 2046 5 0 2020-01-02
## 2047 2 0 2020-01-02
## 2048 21 2 2020-01-02
## 2049 55 6 2020-01-02
## 2050 10 1 2020-01-02
## 2051 8 0 2020-01-02
## 2052 35 4 2020-01-02
## 2053 79 13 2020-01-02
## 2054 3 0 2020-01-02
## 2055 62 0 2020-01-02
## 2056 12 2 2020-01-02
## 2057 11 0 2020-01-02
## 2058 7 0 2020-01-02
## 2059 8 1 2020-01-02
## 2060 1 0 2020-01-02
## 2061 6 0 2020-01-02
## 2062 0 0 2020-01-02
## 2063 41 1 2020-01-02
## 2064 14 0 2020-01-02
## 2065 16 0 2020-01-02
## 2066 20 2 2020-01-02
## 2067 11 2 2020-01-02
## 2068 5 0 2020-01-02
## 2069 37 3 2020-01-02
## 2070 15 3 2020-01-02
## 2071 5 2 2020-01-02
## 2072 9 1 2020-01-02
## 2073 4 1 2020-01-02
## 2074 9 0 2020-01-02
## 2075 95 2 2020-01-02
## 2076 1 0 2020-01-02
## 2077 0 0 2020-01-02
## 2078 12 0 2020-01-02
## 2079 12 3 2020-01-02
## 2080 4 0 2020-01-02
## 2081 6 0 2020-01-02
## 2082 17 2 2020-01-02
## 2083 6 0 2020-01-02
## 2084 15 0 2020-01-02
## 2085 34 0 2020-01-02
## 2086 46 2 2020-01-02
## 2087 4 1 2020-01-02
## 2088 4 1 2020-01-02
## 2089 0 0 2020-01-02
## 2090 3 0 2020-01-02
## 2091 3 1 2020-01-02
## 2092 4 1 2020-01-02
## 2093 20 1 2020-01-02
## 2094 11 1 2020-01-02
## 2095 8 0 2020-01-02
## 2096 18 3 2020-01-02
## 2097 33 5 2020-01-02
## 2098 0 0 2020-01-02
## 2099 0 0 2020-01-02
## 2100 0 0 2020-01-02
## 2101 13 2 2020-01-02
## 2102 1 1 2020-01-02
## 2103 8 0 2020-01-02
## 2104 9 0 2020-01-02
## 2105 0 0 2020-01-02
## 2106 154 12 2020-01-02
## 2107 8 0 2020-01-02
## 2108 122 36 2020-01-02
## 2109 27 0 2020-01-02
## 2110 9 0 2020-01-02
## 2111 6 0 2020-01-02
## 2112 8 0 2020-01-02
## 2113 12 2 2020-01-02
## 2114 17 0 2020-01-02
## 2115 69 2 2020-01-02
## 2116 24 0 2020-01-02
## 2117 80 0 2020-01-02
## 2118 2 0 2020-01-02
## 2119 11 1 2020-01-02
## 2120 146 4 2020-01-02
## 2121 3 0 2020-01-02
## 2122 8 0 2020-01-02
## 2123 16 4 2020-01-02
## 2124 8 1 2020-01-02
## 2125 108 4 2020-01-02
## 2126 0 0 2020-01-02
## 2127 0 0 2020-01-02
## 2128 0 0 2020-01-02
## 2129 14 1 2020-01-02
## 2130 0 0 2020-01-02
## 2131 0 0 2020-01-02
## 2132 2 0 2020-01-02
## 2133 14 1 2020-01-02
## 2134 2 1 2020-01-02
## 2135 0 0 2020-01-02
## 2136 0 0 2020-01-02
## 2137 0 0 2020-01-02
## 2138 4 0 2020-01-02
## 2139 3 0 2020-01-02
## 2140 76 2 2020-01-02
## 2141 3 0 2020-01-02
## 2142 96 3 2020-01-02
## 2143 2 0 2020-01-02
## 2144 21 1 2020-01-02
## 2145 17 0 2020-01-02
## 2146 0 0 2020-01-02
## 2147 8 1 2020-01-02
## 2148 9 0 2020-01-02
## 2149 5 1 2020-01-02
## 2150 7 0 2020-01-02
## 2151 9 1 2020-01-02
## 2152 3 2 2020-01-02
## 2153 14 3 2020-01-02
## 2154 4 0 2020-01-02
## 2155 4 1 2020-01-02
## 2156 1 0 2020-01-02
## 2157 178 22 2020-01-02
## 2158 21 1 2020-01-02
## 2159 9 0 2020-01-02
## 2160 5 0 2020-01-02
## 2161 0 0 2020-01-02
## 2162 4 0 2020-01-02
## 2163 0 0 2020-01-02
## 2164 13 0 2020-01-02
## 2165 5 0 2020-01-02
## 2166 22 3 2020-01-02
## 2167 9 0 2020-01-02
## 2168 58 2 2020-01-02
## 2169 25 2 2020-01-02
## 2170 5 1 2020-01-02
## 2171 5 1 2020-01-02
## 2172 15 2 2020-01-02
## 2173 18 1 2020-01-02
## 2174 17 0 2020-01-02
## 2175 21 1 2020-01-02
## 2176 4 0 2020-01-02
## 2177 8 0 2020-01-02
## 2178 39 0 2020-01-02
## 2179 6 0 2020-01-02
## 2180 5 1 2020-01-02
## 2181 15 0 2020-01-02
## 2182 1 0 2020-01-02
## 2183 6 0 2020-01-02
## 2184 11 2 2020-01-02
## 2185 8 1 2020-01-02
## 2186 10 0 2020-01-02
## 2187 25 0 2020-01-02
## 2188 0 0 2020-01-02
## 2189 9 2 2020-01-02
## 2190 12 1 2020-01-02
## 2191 0 0 2020-01-02
## 2192 8 1 2020-01-02
## 2193 4 0 2020-01-02
## 2194 15 0 2020-01-02
## 2195 8 2 2020-01-02
## 2196 45 0 2020-01-02
## 2197 14 0 2020-01-02
## 2198 21 4 2020-01-02
## 2199 2 0 2020-01-02
## 2200 24 2 2020-01-02
## 2201 6 0 2020-01-02
## 2202 4 1 2020-01-02
## 2203 0 0 2020-01-02
## 2204 5 2 2020-01-02
## 2205 5 0 2020-01-02
## 2206 14 2 2020-01-02
## 2207 9 1 2020-01-02
## 2208 5 4 2020-01-02
## 2209 64 3 2020-01-02
## 2210 2 1 2020-01-02
## 2211 11 1 2020-01-02
## 2212 0 0 2020-01-02
## 2213 7 0 2020-01-02
## 2214 3 0 2020-01-02
## 2215 0 0 2020-01-02
## 2216 53 1 2020-01-02
## 2217 4 0 2020-01-02
## 2218 5 0 2020-01-02
## 2219 15 2 2020-01-02
## 2220 32 5 2020-01-02
## 2221 2 0 2020-01-02
## 2222 8 0 2020-01-02
## 2223 20 1 2020-01-02
## 2224 3 0 2020-01-02
## 2225 6 1 2020-01-02
## 2226 15 7 2020-01-02
## 2227 3 0 2020-01-02
## 2228 17 0 2020-01-02
## 2229 15 2 2020-01-02
## 2230 17 1 2020-01-02
## 2231 1 0 2020-01-02
## 2232 10 0 2020-01-02
## 2233 2 2 2020-01-02
## 2234 21 7 2020-01-02
## 2235 11 1 2020-01-02
## 2236 0 0 2020-01-02
## 2237 61 2 2020-01-02
## 2238 6 0 2020-01-02
## 2239 6 1 2020-01-02
## 2240 21 0 2020-01-02
## 2241 9 2 2020-01-02
## 2242 26 1 2020-01-02
## 2243 5 0 2020-01-02
## 2244 7 1 2020-01-02
## 2245 8 0 2020-01-02
## 2246 24 5 2020-01-02
## 2247 0 0 2020-01-02
## 2248 1 0 2020-01-02
## 2249 0 0 2020-01-02
## 2250 16 3 2020-01-02
## 2251 21 1 2020-01-02
## 2252 41 0 2020-01-02
## 2253 98 1 2020-01-02
## 2254 0 0 2020-01-02
## 2255 11 0 2020-01-02
## 2256 5 0 2020-01-02
## 2257 16 0 2020-01-02
## 2258 17 3 2020-01-02
## 2259 4 0 2020-01-02
## 2260 1 0 2020-01-02
## 2261 13 0 2020-01-02
## 2262 5 1 2020-01-02
## 2263 8 0 2020-01-02
## 2264 1 0 2020-01-02
## 2265 4 1 2020-01-02
## 2266 48 4 2020-01-02
## 2267 5 2 2020-01-02
## 2268 0 0 2020-01-02
## 2269 12 1 2020-01-02
## 2270 90 8 2020-01-02
## 2271 9 0 2020-01-02
## 2272 3 1 2020-01-02
## 2273 8 1 2020-01-02
## 2274 16 1 2020-01-02
## 2275 7 0 2020-01-02
## 2276 0 0 2020-01-02
## 2277 0 0 2020-01-02
## 2278 14 2 2020-01-02
## 2279 55 3 2020-01-02
## 2280 34 3 2020-01-02
## 2281 16 3 2020-01-02
## 2282 99 20 2020-01-02
## 2283 3 1 2020-01-02
## 2284 1 0 2020-01-02
## 2285 5 1 2020-01-02
## 2286 4 0 2020-01-02
## 2287 1 0 2020-01-02
## 2288 13 2 2020-01-02
## 2289 268 16 2020-01-02
## 2290 2 0 2020-01-02
## 2291 0 0 2020-01-02
## 2292 19 3 2020-01-02
## 2293 5 1 2020-01-02
## 2294 127 20 2020-01-02
## 2295 1 0 2020-01-02
## 2296 7 1 2020-01-02
## 2297 14 3 2020-01-02
## 2298 6 0 2020-01-02
## 2299 7 2 2020-01-02
## 2300 0 0 2020-01-02
## 2301 0 0 2020-01-02
## 2302 23 0 2020-01-02
## 2303 45 9 2020-01-02
## 2304 21 0 2020-01-02
## 2305 10 10 2020-01-02
## 2306 16 1 2020-01-02
## 2307 5 1 2020-01-02
## 2308 90 3 2020-01-02
## 2309 0 0 2020-01-02
## 2310 15 2 2020-01-02
## 2311 4 0 2020-01-02
## 2312 0 0 2020-01-02
## 2313 12 1 2020-01-02
## 2314 25 1 2020-01-02
## 2315 12 1 2020-01-02
## 2316 2 3 2020-01-02
## 2317 4 1 2020-01-02
## 2318 16 3 2020-01-02
## 2319 10 1 2020-01-02
## 2320 26 0 2020-01-02
## 2321 13 0 2020-01-02
## 2322 2 0 2020-01-02
## 2323 121 15 2020-01-02
## 2324 0 0 2020-01-02
## 2325 11 1 2020-01-02
## 2326 43 7 2020-01-02
## 2327 8 0 2020-01-02
## 2328 17 0 2020-01-02
## 2329 19 4 2020-01-02
## 2330 5 0 2020-01-02
## 2331 48 3 2020-01-02
## 2332 3 0 2020-01-02
## 2333 1 0 2020-01-02
## 2334 5 2 2020-01-02
## 2335 104 4 2020-01-02
## 2336 42 5 2020-01-02
## 2337 2 1 2020-01-02
## 2338 6 0 2020-01-02
## 2339 1 0 2020-01-02
## 2340 94 2 2020-01-02
## 2341 40 3 2020-01-02
## 2342 0 0 2020-01-02
## 2343 2 0 2020-01-02
## 2344 6 1 2020-01-02
## 2345 6 0 2020-01-02
## 2346 151 7 2020-01-02
## 2347 0 0 2020-01-02
## 2348 0 0 2020-01-02
## 2349 0 0 2020-01-02
## 2350 0 0 2020-01-02
## 2351 0 0 2020-01-02
## 2352 5 1 2020-01-02
## 2353 0 0 2020-01-02
## 2354 14 1 2020-01-02
## 2355 1 0 2020-01-02
## 2356 160 6 2020-01-02
## 2357 7 0 2020-01-02
## 2358 0 0 2020-01-02
## 2359 0 0 2020-01-02
## 2360 0 0 2020-01-03
## 2361 184 17 2020-01-03
## 2362 4 0 2020-01-03
## 2363 8 1 2020-01-03
## 2364 0 0 2020-01-03
## 2365 0 0 2020-01-03
## 2366 3 1 2020-01-03
## 2367 1 0 2020-01-03
## 2368 87 3 2020-01-03
## 2369 260 20 2020-01-03
## 2370 2 0 2020-01-03
## 2371 3 0 2020-01-03
## 2372 0 0 2020-01-03
## 2373 49 1 2020-01-03
## 2374 5 0 2020-01-03
## 2375 1 0 2020-01-03
## 2376 0 0 2020-01-03
## 2377 0 0 2020-01-03
## 2378 9 0 2020-01-03
## 2379 4 0 2020-01-03
## 2380 9 1 2020-01-03
## 2381 28 3 2020-01-03
## 2382 6 0 2020-01-03
## 2383 86 2 2020-01-03
## 2384 4 0 2020-01-03
## 2385 0 0 2020-01-03
## 2386 11 0 2020-01-03
## 2387 3 0 2020-01-03
## 2388 0 0 2020-01-03
## 2389 1 1 2020-01-03
## 2390 5 0 2020-01-03
## 2391 7 0 2020-01-03
## 2392 115 13 2020-01-03
## 2393 9 0 2020-01-03
## 2394 13 0 2020-01-03
## 2395 10 0 2020-01-03
## 2396 61 14 2020-01-03
## 2397 1 1 2020-01-03
## 2398 8 0 2020-01-03
## 2399 0 0 2020-01-03
## 2400 10 5 2020-01-03
## 2401 0 0 2020-01-03
## 2402 0 0 2020-01-03
## 2403 10 1 2020-01-03
## 2404 0 0 2020-01-03
## 2405 7 0 2020-01-03
## 2406 2 0 2020-01-03
## 2407 5 0 2020-01-03
## 2408 15 3 2020-01-03
## 2409 26 1 2020-01-03
## 2410 77 15 2020-01-03
## 2411 1 0 2020-01-03
## 2412 6 0 2020-01-03
## 2413 4 0 2020-01-03
## 2414 11 3 2020-01-03
## 2415 0 0 2020-01-03
## 2416 11 0 2020-01-03
## 2417 0 0 2020-01-03
## 2418 9 1 2020-01-03
## 2419 26 3 2020-01-03
## 2420 0 0 2020-01-03
## 2421 15 0 2020-01-03
## 2422 48 2 2020-01-03
## 2423 10 1 2020-01-03
## 2424 2 0 2020-01-03
## 2425 5 1 2020-01-03
## 2426 5 0 2020-01-03
## 2427 9 0 2020-01-03
## 2428 16 4 2020-01-03
## 2429 2 0 2020-01-03
## 2430 31 0 2020-01-03
## 2431 4 0 2020-01-03
## 2432 1 0 2020-01-03
## 2433 0 0 2020-01-03
## 2434 1 0 2020-01-03
## 2435 14 0 2020-01-03
## 2436 0 0 2020-01-03
## 2437 14 2 2020-01-03
## 2438 4 2 2020-01-03
## 2439 2 1 2020-01-03
## 2440 1 0 2020-01-03
## 2441 0 0 2020-01-03
## 2442 8 0 2020-01-03
## 2443 1 0 2020-01-03
## 2444 8 0 2020-01-03
## 2445 23 1 2020-01-03
## 2446 0 0 2020-01-03
## 2447 0 0 2020-01-03
## 2448 11 0 2020-01-03
## 2449 8 0 2020-01-03
## 2450 10 3 2020-01-03
## 2451 145 27 2020-01-03
## 2452 0 0 2020-01-03
## 2453 0 0 2020-01-03
## 2454 0 0 2020-01-03
## 2455 13 0 2020-01-03
## 2456 133 6 2020-01-03
## 2457 5 0 2020-01-03
## 2458 0 0 2020-01-03
## 2459 24 1 2020-01-03
## 2460 0 0 2020-01-03
## 2461 718 151 2020-01-03
## 2462 10 2 2020-01-03
## 2463 1 0 2020-01-03
## 2464 8 2 2020-01-03
## 2465 0 0 2020-01-03
## 2466 9 2 2020-01-03
## 2467 0 0 2020-01-03
## 2468 2 0 2020-01-03
## 2469 7 2 2020-01-03
## 2470 19 0 2020-01-03
## 2471 25 0 2020-01-03
## 2472 3 1 2020-01-03
## 2473 6 0 2020-01-03
## 2474 15 1 2020-01-03
## 2475 0 0 2020-01-03
## 2476 1 0 2020-01-03
## 2477 8 0 2020-01-03
## 2478 384 6 2020-01-03
## 2479 4 0 2020-01-03
## 2480 19 8 2020-01-03
## 2481 61 3 2020-01-03
## 2482 5 0 2020-01-03
## 2483 65 3 2020-01-03
## 2484 10 0 2020-01-03
## 2485 0 0 2020-01-03
## 2486 0 0 2020-01-03
## 2487 0 0 2020-01-03
## 2488 29 12 2020-01-03
## 2489 13 1 2020-01-03
## 2490 78 2 2020-01-03
## 2491 135 13 2020-01-03
## 2492 13 4 2020-01-03
## 2493 0 0 2020-01-03
## 2494 0 0 2020-01-03
## 2495 2 0 2020-01-03
## 2496 0 0 2020-01-03
## 2497 8 1 2020-01-03
## 2498 7 1 2020-01-03
## 2499 1 2 2020-01-03
## 2500 0 0 2020-01-03
## 2501 10 0 2020-01-03
## 2502 0 0 2020-01-03
## 2503 4 3 2020-01-03
## 2504 0 0 2020-01-03
## 2505 7 0 2020-01-03
## 2506 52 2 2020-01-03
## 2507 37 2 2020-01-03
## 2508 9 1 2020-01-03
## 2509 3 0 2020-01-03
## 2510 21 6 2020-01-03
## 2511 0 0 2020-01-03
## 2512 0 0 2020-01-03
## 2513 0 0 2020-01-03
## 2514 38 4 2020-01-03
## 2515 61 15 2020-01-03
## 2516 0 0 2020-01-03
## 2517 3 0 2020-01-03
## 2518 6 0 2020-01-03
## 2519 7 0 2020-01-03
## 2520 2 0 2020-01-03
## 2521 1 0 2020-01-03
## 2522 8 0 2020-01-03
## 2523 82 1 2020-01-03
## 2524 0 0 2020-01-03
## 2525 5 0 2020-01-03
## 2526 17 0 2020-01-03
## 2527 2 0 2020-01-03
## 2528 1 0 2020-01-03
## 2529 10 2 2020-01-03
## 2530 0 0 2020-01-03
## 2531 13 4 2020-01-03
## 2532 0 0 2020-01-03
## 2533 2 1 2020-01-03
## 2534 170 14 2020-01-03
## 2535 2 0 2020-01-03
## 2536 1 0 2020-01-03
## 2537 382 15 2020-01-03
## 2538 48 1 2020-01-03
## 2539 6 3 2020-01-03
## 2540 1 1 2020-01-03
## 2541 0 0 2020-01-03
## 2542 7 0 2020-01-03
## 2543 13 2 2020-01-03
## 2544 4 0 2020-01-03
## 2545 7 0 2020-01-03
## 2546 9 1 2020-01-03
## 2547 5 0 2020-01-03
## 2548 0 0 2020-01-03
## 2549 29 1 2020-01-03
## 2550 41 3 2020-01-03
## 2551 100 3 2020-01-03
## 2552 6 1 2020-01-03
## 2553 4 3 2020-01-03
## 2554 2 0 2020-01-03
## 2555 10 0 2020-01-03
## 2556 8 4 2020-01-03
## 2557 10 0 2020-01-03
## 2558 2 0 2020-01-03
## 2559 3 0 2020-01-03
## 2560 75 0 2020-01-03
## 2561 2 2 2020-01-03
## 2562 12 0 2020-01-03
## 2563 0 0 2020-01-03
## 2564 21 1 2020-01-03
## 2565 41 5 2020-01-03
## 2566 8 1 2020-01-03
## 2567 0 0 2020-01-03
## 2568 0 0 2020-01-03
## 2569 9 0 2020-01-03
## 2570 14 1 2020-01-03
## 2571 22 3 2020-01-03
## 2572 9 1 2020-01-03
## 2573 8 0 2020-01-03
## 2574 0 0 2020-01-03
## 2575 0 0 2020-01-03
## 2576 0 0 2020-01-03
## 2577 3 0 2020-01-03
## 2578 13 1 2020-01-03
## 2579 13 2 2020-01-03
## 2580 14 0 2020-01-03
## 2581 9 0 2020-01-03
## 2582 20 2 2020-01-03
## 2583 9 1 2020-01-03
## 2584 135 12 2020-01-03
## 2585 0 0 2020-01-03
## 2586 11 2 2020-01-03
## 2587 5 2 2020-01-03
## 2588 6 0 2020-01-03
## 2589 1 1 2020-01-03
## 2590 1 0 2020-01-03
## 2591 0 0 2020-01-03
## 2592 3 0 2020-01-03
## 2593 30 0 2020-01-03
## 2594 0 0 2020-01-03
## 2595 3 1 2020-01-03
## 2596 0 0 2020-01-03
## 2597 5 0 2020-01-03
## 2598 62 6 2020-01-03
## 2599 6 0 2020-01-03
## 2600 3 0 2020-01-03
## 2601 8 4 2020-01-03
## 2602 4 1 2020-01-03
## 2603 140 33 2020-01-03
## 2604 0 0 2020-01-03
## 2605 0 0 2020-01-03
## 2606 0 0 2020-01-03
## 2607 331 5 2020-01-03
## 2608 11 3 2020-01-03
## 2609 0 0 2020-01-03
## 2610 6 0 2020-01-03
## 2611 0 0 2020-01-03
## 2612 28 1 2020-01-03
## 2613 4 1 2020-01-03
## 2614 24 0 2020-01-03
## 2615 15 3 2020-01-03
## 2616 2 0 2020-01-03
## 2617 2 0 2020-01-03
## 2618 5 2 2020-01-03
## 2619 8 1 2020-01-03
## 2620 0 0 2020-01-03
## 2621 36 5 2020-01-03
## 2622 5 1 2020-01-03
## 2623 4 0 2020-01-03
## 2624 0 0 2020-01-03
## 2625 0 0 2020-01-03
## 2626 6 1 2020-01-03
## 2627 2 0 2020-01-03
## 2628 10 0 2020-01-03
## 2629 4 0 2020-01-03
## 2630 42 2 2020-01-03
## 2631 2 0 2020-01-03
## 2632 8 1 2020-01-03
## 2633 37 5 2020-01-03
## 2634 13 0 2020-01-03
## 2635 9 0 2020-01-03
## 2636 3 0 2020-01-03
## 2637 59 9 2020-01-03
## 2638 0 0 2020-01-03
## 2639 0 1 2020-01-03
## 2640 0 0 2020-01-03
## 2641 12 0 2020-01-03
## 2642 62 3 2020-01-03
## 2643 4 1 2020-01-03
## 2644 5 0 2020-01-03
## 2645 0 0 2020-01-03
## 2646 24 0 2020-01-03
## 2647 44 2 2020-01-03
## 2648 0 0 2020-01-03
## 2649 15 0 2020-01-03
## 2650 28 4 2020-01-03
## 2651 6 0 2020-01-03
## 2652 157 80 2020-01-03
## 2653 1 0 2020-01-03
## 2654 2 1 2020-01-03
## 2655 7 0 2020-01-03
## 2656 0 0 2020-01-03
## 2657 17 2 2020-01-03
## 2658 7 3 2020-01-03
## 2659 14 1 2020-01-03
## 2660 11 0 2020-01-03
## 2661 333 33 2020-01-03
## 2662 10 0 2020-01-03
## 2663 0 0 2020-01-03
## 2664 8 0 2020-01-03
## 2665 0 0 2020-01-03
## 2666 83 5 2020-01-03
## 2667 6 1 2020-01-03
## 2668 6 0 2020-01-03
## 2669 14 3 2020-01-03
## 2670 12 0 2020-01-03
## 2671 0 0 2020-01-03
## 2672 0 0 2020-01-03
## 2673 4 0 2020-01-03
## 2674 33 2 2020-01-03
## 2675 7 0 2020-01-03
## 2676 50 10 2020-01-03
## 2677 11 0 2020-01-03
## 2678 2 0 2020-01-03
## 2679 7 0 2020-01-03
## 2680 6 0 2020-01-03
## 2681 6 4 2020-01-03
## 2682 14 1 2020-01-03
## 2683 7 0 2020-01-03
## 2684 38 4 2020-01-03
## 2685 12 1 2020-01-03
## 2686 2 0 2020-01-03
## 2687 19 1 2020-01-03
## 2688 43 1 2020-01-03
## 2689 0 0 2020-01-03
## 2690 8 2 2020-01-03
## 2691 0 0 2020-01-03
## 2692 10 1 2020-01-03
## 2693 4 1 2020-01-03
## 2694 58 2 2020-01-03
## 2695 0 0 2020-01-03
## 2696 13 0 2020-01-03
## 2697 1 1 2020-01-03
## 2698 13 3 2020-01-03
## 2699 12 1 2020-01-03
## 2700 7 1 2020-01-03
## 2701 43 1 2020-01-03
## 2702 27 3 2020-01-03
## 2703 1 0 2020-01-03
## 2704 0 0 2020-01-03
## 2705 15 0 2020-01-03
## 2706 17 0 2020-01-03
## 2707 5 0 2020-01-03
## 2708 10 4 2020-01-03
## 2709 10 1 2020-01-03
## 2710 0 0 2020-01-03
## 2711 4 1 2020-01-03
## 2712 0 0 2020-01-03
## 2713 6 0 2020-01-03
## 2714 124 18 2020-01-03
## 2715 0 0 2020-01-03
## 2716 3 0 2020-01-03
## 2717 18 0 2020-01-03
## 2718 37 0 2020-01-03
## 2719 60 13 2020-01-03
## 2720 0 0 2020-01-03
## 2721 58 4 2020-01-03
## 2722 6 0 2020-01-03
## 2723 0 0 2020-01-03
## 2724 24 4 2020-01-03
## 2725 9 0 2020-01-03
## 2726 0 0 2020-01-03
## 2727 4 0 2020-01-03
## 2728 30 3 2020-01-03
## 2729 15 1 2020-01-03
## 2730 18 0 2020-01-03
## 2731 43 10 2020-01-03
## 2732 0 0 2020-01-03
## 2733 21 3 2020-01-03
## 2734 181 24 2020-01-03
## 2735 6 0 2020-01-03
## 2736 13 2 2020-01-03
## 2737 0 0 2020-01-03
## 2738 0 0 2020-01-03
## 2739 0 0 2020-01-03
## 2740 59 4 2020-01-03
## 2741 5 1 2020-01-03
## 2742 18 2 2020-01-03
## 2743 56 3 2020-01-03
## 2744 0 0 2020-01-03
## 2745 0 0 2020-01-03
## 2746 11 1 2020-01-03
## 2747 13 0 2020-01-03
## 2748 40 0 2020-01-03
## 2749 3 0 2020-01-03
## 2750 2 0 2020-01-03
## 2751 3 1 2020-01-03
## 2752 0 0 2020-01-03
## 2753 77 8 2020-01-03
## 2754 16 1 2020-01-03
## 2755 7 0 2020-01-03
## 2756 9 2 2020-01-03
## 2757 6 0 2020-01-03
## 2758 4 2 2020-01-03
## 2759 6 0 2020-01-03
## 2760 31 3 2020-01-03
## 2761 33 3 2020-01-03
## 2762 0 0 2020-01-03
## 2763 2 0 2020-01-03
## 2764 5 0 2020-01-03
## 2765 0 0 2020-01-03
## 2766 1 0 2020-01-03
## 2767 49 6 2020-01-03
## 2768 138 8 2020-01-03
## 2769 1 0 2020-01-03
## 2770 9 0 2020-01-03
## 2771 44 0 2020-01-03
## 2772 0 0 2020-01-03
## 2773 6 0 2020-01-03
## 2774 5 1 2020-01-03
## 2775 0 2 2020-01-03
## 2776 46 26 2020-01-03
## 2777 0 1 2020-01-03
## 2778 7 0 2020-01-03
## 2779 4 3 2020-01-03
## 2780 4 1 2020-01-03
## 2781 0 0 2020-01-03
## 2782 41 20 2020-01-03
## 2783 45 3 2020-01-03
## 2784 47 2 2020-01-03
## 2785 15 0 2020-01-03
## 2786 0 0 2020-01-03
## 2787 11 0 2020-01-03
## 2788 4 2 2020-01-03
## 2789 14 1 2020-01-03
## 2790 34 11 2020-01-03
## 2791 1 0 2020-01-03
## 2792 16 1 2020-01-03
## 2793 25 11 2020-01-03
## 2794 3 0 2020-01-03
## 2795 8 0 2020-01-03
## 2796 13 0 2020-01-03
## 2797 203 6 2020-01-03
## 2798 0 0 2020-01-03
## 2799 23 0 2020-01-03
## 2800 3 0 2020-01-03
## 2801 18 2 2020-01-03
## 2802 0 0 2020-01-03
## 2803 2 0 2020-01-03
## 2804 27 1 2020-01-03
## 2805 12 0 2020-01-03
## 2806 60 1 2020-01-03
## 2807 33 2 2020-01-03
## 2808 0 0 2020-01-03
## 2809 13 2 2020-01-03
## 2810 9 0 2020-01-03
## 2811 1 2 2020-01-03
## 2812 82 7 2020-01-03
## 2813 0 0 2020-01-03
## 2814 0 0 2020-01-03
## 2815 4 1 2020-01-03
## 2816 4 1 2020-01-03
## 2817 20 0 2020-01-03
## 2818 23 0 2020-01-03
## 2819 64 1 2020-01-03
## 2820 20 0 2020-01-03
## 2821 14 1 2020-01-03
## 2822 11 0 2020-01-03
## 2823 0 0 2020-01-03
## 2824 0 0 2020-01-03
## 2825 978 41 2020-01-03
## 2826 24 3 2020-01-03
## 2827 1 0 2020-01-03
## 2828 16 0 2020-01-03
## 2829 32 3 2020-01-03
## 2830 7 1 2020-01-03
## 2831 77 5 2020-01-03
## 2832 35 12 2020-01-03
## 2833 3 0 2020-01-03
## 2834 27 3 2020-01-03
## 2835 39 8 2020-01-03
## 2836 35 3 2020-01-03
## 2837 152 27 2020-01-03
## 2838 16 2 2020-01-03
## 2839 148 10 2020-01-03
## 2840 0 0 2020-01-03
## 2841 0 0 2020-01-03
## 2842 12 0 2020-01-03
## 2843 13 1 2020-01-03
## 2844 0 0 2020-01-03
## 2845 2 1 2020-01-03
## 2846 5 1 2020-01-03
## 2847 27 0 2020-01-03
## 2848 9 0 2020-01-03
## 2849 2 0 2020-01-03
## 2850 13 0 2020-01-03
## 2851 0 0 2020-01-03
## 2852 56 2 2020-01-03
## 2853 0 0 2020-01-03
## 2854 3 0 2020-01-03
## 2855 147 9 2020-01-03
## 2856 83 4 2020-01-03
## 2857 84 4 2020-01-03
## 2858 5 0 2020-01-03
## 2859 37 3 2020-01-03
## 2860 2 0 2020-01-03
## 2861 3 0 2020-01-03
## 2862 5 0 2020-01-03
## 2863 0 0 2020-01-03
## 2864 4 2 2020-01-03
## 2865 3 0 2020-01-03
## 2866 5 0 2020-01-03
## 2867 16 0 2020-01-03
## 2868 9 0 2020-01-03
## 2869 7 1 2020-01-03
## 2870 0 0 2020-01-03
## 2871 140 10 2020-01-03
## 2872 6 0 2020-01-03
## 2873 11 0 2020-01-03
## 2874 1 1 2020-01-03
## 2875 19 2 2020-01-03
## 2876 9 0 2020-01-03
## 2877 0 0 2020-01-03
## 2878 7 0 2020-01-03
## 2879 0 0 2020-01-03
## 2880 0 0 2020-01-03
## 2881 12 1 2020-01-03
## 2882 155 12 2020-01-03
## 2883 16 3 2020-01-03
## 2884 18 4 2020-01-03
## 2885 7 0 2020-01-03
## 2886 4 1 2020-01-03
## 2887 0 0 2020-01-03
## 2888 2 0 2020-01-03
## 2889 4 1 2020-01-03
## 2890 24 2 2020-01-03
## 2891 121 191 2020-01-03
## 2892 2 0 2020-01-03
## 2893 6 0 2020-01-03
## 2894 3 0 2020-01-03
## 2895 112 12 2020-01-03
## 2896 9 1 2020-01-03
## 2897 26 0 2020-01-03
## 2898 2 1 2020-01-03
## 2899 64 0 2020-01-03
## 2900 20 2 2020-01-03
## 2901 0 0 2020-01-03
## 2902 19 1 2020-01-03
## 2903 5 1 2020-01-03
## 2904 84 6 2020-01-03
## 2905 3 0 2020-01-03
## 2906 0 0 2020-01-03
## 2907 0 0 2020-01-03
## 2908 3 3 2020-01-03
## 2909 1 0 2020-01-03
## 2910 12 2 2020-01-03
## 2911 25 3 2020-01-03
## 2912 13 0 2020-01-03
## 2913 2 1 2020-01-03
## 2914 5 1 2020-01-03
## 2915 0 0 2020-01-03
## 2916 0 0 2020-01-03
## 2917 6 0 2020-01-03
## 2918 43 1 2020-01-03
## 2919 18 0 2020-01-03
## 2920 7 1 2020-01-03
## 2921 1 0 2020-01-03
## 2922 3 0 2020-01-03
## 2923 4 0 2020-01-03
## 2924 5 1 2020-01-03
## 2925 1 0 2020-01-03
## 2926 16 2 2020-01-03
## 2927 285 43 2020-01-03
## 2928 5 1 2020-01-03
## 2929 0 1 2020-01-03
## 2930 13 0 2020-01-03
## 2931 3 0 2020-01-03
## 2932 9 1 2020-01-03
## 2933 8 1 2020-01-03
## 2934 80 7 2020-01-03
## 2935 7 2 2020-01-03
## 2936 51 22 2020-01-03
## 2937 1 3 2020-01-03
## 2938 5 0 2020-01-03
## 2939 5 2 2020-01-03
## 2940 34 9 2020-01-03
## 2941 15 1 2020-01-03
## 2942 1 1 2020-01-03
## 2943 15 2 2020-01-03
## 2944 8 0 2020-01-03
## 2945 25 5 2020-01-03
## 2946 18 0 2020-01-03
## 2947 38 1 2020-01-03
## 2948 4 1 2020-01-03
## 2949 4 0 2020-01-03
## 2950 1 1 2020-01-03
## 2951 59 6 2020-01-03
## 2952 8 1 2020-01-03
## 2953 13 4 2020-01-03
## 2954 12 3 2020-01-03
## 2955 0 0 2020-01-03
## 2956 22 1 2020-01-03
## 2957 13 5 2020-01-03
## 2958 6 0 2020-01-03
## 2959 9 3 2020-01-03
## 2960 3 1 2020-01-03
## 2961 42 4 2020-01-03
## 2962 196 8 2020-01-03
## 2963 10 1 2020-01-03
## 2964 32 6 2020-01-03
## 2965 4 0 2020-01-03
## 2966 0 0 2020-01-03
## 2967 14 0 2020-01-03
## 2968 3 2 2020-01-03
## 2969 0 0 2020-01-03
## 2970 2 2 2020-01-03
## 2971 8 0 2020-01-03
## 2972 21 3 2020-01-03
## 2973 13 0 2020-01-03
## 2974 74 4 2020-01-03
## 2975 40 2 2020-01-03
## 2976 1 0 2020-01-03
## 2977 12 1 2020-01-03
## 2978 6 1 2020-01-03
## 2979 3 0 2020-01-03
## 2980 6 0 2020-01-03
## 2981 33 1 2020-01-03
## 2982 0 0 2020-01-03
## 2983 3 0 2020-01-03
## 2984 0 0 2020-01-03
## 2985 3 1 2020-01-03
## 2986 3 0 2020-01-03
## 2987 2 0 2020-01-03
## 2988 2 0 2020-01-03
## 2989 3 1 2020-01-03
## 2990 4 1 2020-01-03
## 2991 69 1 2020-01-03
## 2992 11 1 2020-01-03
## 2993 99 6 2020-01-03
## 2994 4 0 2020-01-03
## 2995 45 1 2020-01-03
## 2996 44 0 2020-01-03
## 2997 2 0 2020-01-03
## 2998 56 1 2020-01-03
## 2999 3 1 2020-01-03
## 3000 5 0 2020-01-03
## 3001 1 0 2020-01-03
## 3002 0 0 2020-01-03
## 3003 6 1 2020-01-03
## 3004 28 2 2020-01-03
## 3005 4 0 2020-01-03
## 3006 7 0 2020-01-03
## 3007 12 2 2020-01-03
## 3008 4 2 2020-01-03
## 3009 65 19 2020-01-03
## 3010 18 0 2020-01-03
## 3011 0 0 2020-01-03
## 3012 2 1 2020-01-03
## 3013 1 0 2020-01-03
## 3014 5 3 2020-01-03
## 3015 0 0 2020-01-03
## 3016 11 0 2020-01-03
## 3017 11 1 2020-01-03
## 3018 37 5 2020-01-03
## 3019 10 0 2020-01-03
## 3020 4 0 2020-01-03
## 3021 23 2 2020-01-03
## 3022 0 0 2020-01-03
## 3023 8 0 2020-01-03
## 3024 16 1 2020-01-03
## 3025 5 0 2020-01-03
## 3026 15 2 2020-01-03
## 3027 11 1 2020-01-03
## 3028 1 0 2020-01-03
## 3029 22 4 2020-01-03
## 3030 33 5 2020-01-03
## 3031 45 12 2020-01-03
## 3032 0 0 2020-01-03
## 3033 2 1 2020-01-03
## 3034 2 1 2020-01-03
## 3035 14 1 2020-01-03
## 3036 41 1 2020-01-03
## 3037 253 8 2020-01-03
## 3038 2 2 2020-01-03
## 3039 1 0 2020-01-03
## 3040 3 1 2020-01-03
## 3041 2 0 2020-01-03
## 3042 0 0 2020-01-03
## 3043 2 0 2020-01-03
## 3044 51 8 2020-01-03
## 3045 5 1 2020-01-03
## 3046 46 3 2020-01-03
## 3047 1 0 2020-01-03
## 3048 14 0 2020-01-03
## 3049 4 0 2020-01-03
## 3050 2 0 2020-01-03
## 3051 30 0 2020-01-03
## 3052 946 81 2020-01-03
## 3053 4 2 2020-01-03
## 3054 5 0 2020-01-03
## 3055 0 0 2020-01-03
## 3056 3 0 2020-01-03
## 3057 0 0 2020-01-03
## 3058 8 0 2020-01-03
## 3059 0 0 2020-01-03
## 3060 1 0 2020-01-03
## 3061 8 0 2020-01-03
## 3062 7 0 2020-01-03
## 3063 9 1 2020-01-03
## 3064 5 0 2020-01-03
## 3065 75 3 2020-01-03
## 3066 5 0 2020-01-03
## 3067 0 0 2020-01-03
## 3068 0 0 2020-01-03
## 3069 4 0 2020-01-03
## 3070 0 0 2020-01-03
## 3071 2 2 2020-01-03
## 3072 3 0 2020-01-03
## 3073 0 0 2020-01-03
## 3074 4 0 2020-01-03
## 3075 5 0 2020-01-03
## 3076 0 0 2020-01-03
## 3077 0 0 2020-01-03
## 3078 20 2 2020-01-03
## 3079 8 0 2020-01-03
## 3080 21 2 2020-01-03
## 3081 17 1 2020-01-03
## 3082 18 0 2020-01-03
## 3083 2 3 2020-01-03
## 3084 176 9 2020-01-03
## 3085 71 1 2020-01-03
## 3086 0 0 2020-01-03
## 3087 0 0 2020-01-03
## 3088 3 0 2020-01-03
## 3089 3 0 2020-01-03
## 3090 2 0 2020-01-03
## 3091 0 0 2020-01-03
## 3092 8 0 2020-01-03
## 3093 7 5 2020-01-03
## 3094 9 0 2020-01-03
## 3095 0 0 2020-01-03
## 3096 15 3 2020-01-03
## 3097 0 0 2020-01-03
## 3098 71 14 2020-01-03
## 3099 3 0 2020-01-03
## 3100 19 2 2020-01-03
## 3101 5 0 2020-01-03
## 3102 32 31 2020-01-03
## 3103 0 0 2020-01-03
## 3104 53 3 2020-01-03
## 3105 0 0 2020-01-03
## 3106 22 2 2020-01-03
## 3107 10 3 2020-01-03
## 3108 2 0 2020-01-03
## 3109 142 9 2020-01-03
## 3110 1 0 2020-01-03
## 3111 13 1 2020-01-03
## 3112 14 3 2020-01-03
## 3113 0 0 2020-01-03
## 3114 9 1 2020-01-03
## 3115 0 0 2020-01-03
## 3116 5 0 2020-01-03
## 3117 122 15 2020-01-03
## 3118 0 0 2020-01-03
## 3119 125 1 2020-01-03
## 3120 2 0 2020-01-03
## 3121 9 1 2020-01-03
## 3122 12 0 2020-01-03
## 3123 26 3 2020-01-03
## 3124 32 0 2020-01-03
## 3125 0 0 2020-01-03
## 3126 0 0 2020-01-03
## 3127 2 0 2020-01-03
## 3128 0 0 2020-01-03
## 3129 7 4 2020-01-03
## 3130 4 1 2020-01-03
## 3131 3 0 2020-01-03
## 3132 15 0 2020-01-03
## 3133 39 4 2020-01-03
## 3134 5 2 2020-01-03
## 3135 0 0 2020-01-03
## 3136 3 6 2020-01-03
## 3137 90 7 2020-01-03
## 3138 0 0 2020-01-03
## 3139 5 0 2020-01-03
## 3140 0 0 2020-01-03
## 3141 39 4 2020-01-03
## 3142 35 2 2020-01-03
## 3143 0 0 2020-01-03
## 3144 55 4 2020-01-03
## 3145 0 0 2020-01-03
## 3146 0 0 2020-01-03
## 3147 1 0 2020-01-03
## 3148 15 0 2020-01-03
## 3149 1 0 2020-01-03
## 3150 2 0 2020-01-03
## 3151 2 0 2020-01-03
## 3152 0 0 2020-01-03
## 3153 10 0 2020-01-03
## 3154 0 0 2020-01-03
## 3155 11 0 2020-01-03
## 3156 11 1 2020-01-03
## 3157 8 0 2020-01-03
## 3158 14 4 2020-01-03
## 3159 14 0 2020-01-03
## 3160 0 0 2020-01-03
## 3161 39 0 2020-01-03
## 3162 1 0 2020-01-03
## 3163 4 0 2020-01-03
## 3164 0 0 2020-01-03
## 3165 0 0 2020-01-03
## 3166 8 0 2020-01-03
## 3167 6 0 2020-01-03
## 3168 1 0 2020-01-03
## 3169 0 0 2020-01-03
## 3170 0 0 2020-01-03
## 3171 13 0 2020-01-03
## 3172 29 0 2020-01-03
## 3173 5 0 2020-01-03
## 3174 12 1 2020-01-03
## 3175 13 0 2020-01-03
## 3176 14 1 2020-01-03
## 3177 0 0 2020-01-03
## 3178 25 0 2020-01-03
## 3179 78 8 2020-01-03
## 3180 4 2 2020-01-03
## 3181 3 1 2020-01-03
## 3182 11 0 2020-01-03
## 3183 18 6 2020-01-03
## 3184 9 0 2020-01-03
## 3185 1 0 2020-01-03
## 3186 6 0 2020-01-03
## 3187 0 0 2020-01-03
## 3188 14 1 2020-01-03
## 3189 0 0 2020-01-03
## 3190 6 1 2020-01-03
## 3191 0 0 2020-01-03
## 3192 0 0 2020-01-03
## 3193 6 1 2020-01-03
## 3194 9 0 2020-01-03
## 3195 28 0 2020-01-03
## 3196 8 2 2020-01-03
## 3197 5 0 2020-01-03
## 3198 5 0 2020-01-03
## 3199 14 4 2020-01-03
## 3200 0 0 2020-01-03
## 3201 9 1 2020-01-03
## 3202 2 0 2020-01-03
## 3203 0 0 2020-01-03
## 3204 2 0 2020-01-03
## 3205 5 2 2020-01-03
## 3206 5 0 2020-01-03
## 3207 38 1 2020-01-03
## 3208 28 0 2020-01-03
## 3209 0 0 2020-01-03
## 3210 11 0 2020-01-03
## 3211 4 1 2020-01-03
## 3212 27 6 2020-01-03
## 3213 25 2 2020-01-03
## 3214 86 4 2020-01-03
## 3215 10 3 2020-01-03
## 3216 136 7 2020-01-03
## 3217 5 0 2020-01-03
## 3218 3 0 2020-01-03
## 3219 50 2 2020-01-03
## 3220 21 1 2020-01-03
## 3221 10 0 2020-01-03
## 3222 3 0 2020-01-03
## 3223 39 1 2020-01-03
## 3224 1 0 2020-01-03
## 3225 0 0 2020-01-03
## 3226 4 0 2020-01-03
## 3227 12 1 2020-01-03
## 3228 33 4 2020-01-03
## 3229 4 0 2020-01-03
## 3230 19 0 2020-01-03
## 3231 14 0 2020-01-03
## 3232 24 10 2020-01-03
## 3233 0 0 2020-01-03
## 3234 15 2 2020-01-03
## 3235 25 1 2020-01-03
## 3236 0 0 2020-01-03
## 3237 16 1 2020-01-03
## 3238 44 4 2020-01-03
## 3239 0 0 2020-01-03
## 3240 1 0 2020-01-03
## 3241 5 0 2020-01-03
## 3242 144 0 2020-01-03
## 3243 0 0 2020-01-03
## 3244 18 2 2020-01-03
## 3245 0 0 2020-01-03
## 3246 12 0 2020-01-03
## 3247 1 0 2020-01-03
## 3248 5 0 2020-01-03
## 3249 109 40 2020-01-03
## 3250 0 0 2020-01-03
## 3251 58 0 2020-01-03
## 3252 1 0 2020-01-03
## 3253 0 0 2020-01-03
## 3254 42 2 2020-01-03
## 3255 6 0 2020-01-03
## 3256 14 0 2020-01-03
## 3257 9 1 2020-01-03
## 3258 3 1 2020-01-03
## 3259 11 3 2020-01-03
## 3260 6 0 2020-01-03
## 3261 5 0 2020-01-03
## 3262 4 0 2020-01-03
## 3263 4 0 2020-01-03
## 3264 2 0 2020-01-03
## 3265 24 1 2020-01-03
## 3266 33 4 2020-01-03
## 3267 10 1 2020-01-03
## 3268 0 0 2020-01-03
## 3269 5 0 2020-01-03
## 3270 8 1 2020-01-03
## 3271 10 0 2020-01-03
## 3272 4 0 2020-01-03
## 3273 84 3 2020-01-03
## 3274 55 1 2020-01-03
## 3275 2 0 2020-01-03
## 3276 0 0 2020-01-03
## 3277 0 0 2020-01-03
## 3278 0 0 2020-01-03
## 3279 0 0 2020-01-03
## 3280 0 0 2020-01-03
## 3281 18 3 2020-01-03
## 3282 87 4 2020-01-03
## 3283 0 0 2020-01-03
## 3284 20 0 2020-01-03
## 3285 29 3 2020-01-03
## 3286 18 2 2020-01-03
## 3287 1 0 2020-01-03
## 3288 1 0 2020-01-03
## 3289 6 2 2020-01-03
## 3290 5 1 2020-01-03
## 3291 0 0 2020-01-03
## 3292 34 1 2020-01-03
## 3293 5 1 2020-01-03
## 3294 3 0 2020-01-03
## 3295 0 0 2020-01-03
## 3296 0 0 2020-01-03
## 3297 3 0 2020-01-03
## 3298 107 9 2020-01-03
## 3299 1 0 2020-01-03
## 3300 110 16 2020-01-03
## 3301 3 0 2020-01-03
## 3302 54 3 2020-01-03
## 3303 0 0 2020-01-03
## 3304 1 0 2020-01-03
## 3305 1 0 2020-01-03
## 3306 0 0 2020-01-03
## 3307 11 0 2020-01-03
## 3308 4 0 2020-01-03
## 3309 0 0 2020-01-03
## 3310 3 0 2020-01-03
## 3311 127 8 2020-01-03
## 3312 4 0 2020-01-03
## 3313 14 1 2020-01-03
## 3314 5 1 2020-01-03
## 3315 2 1 2020-01-03
## 3316 0 0 2020-01-03
## 3317 0 0 2020-01-03
## 3318 13 2 2020-01-03
## 3319 0 0 2020-01-03
## 3320 14 0 2020-01-03
## 3321 7 0 2020-01-03
## 3322 0 0 2020-01-03
## 3323 10 0 2020-01-03
## 3324 16 0 2020-01-03
## 3325 0 0 2020-01-03
## 3326 130 3 2020-01-03
## 3327 2 0 2020-01-03
## 3328 0 0 2020-01-03
## 3329 20 0 2020-01-03
## 3330 1 1 2020-01-03
## 3331 5 0 2020-01-03
## 3332 1 0 2020-01-03
## 3333 50 4 2020-01-03
## 3334 0 0 2020-01-03
## 3335 86 19 2020-01-03
## 3336 3 0 2020-01-03
## 3337 2 0 2020-01-03
## 3338 6 2 2020-01-03
## 3339 32 2 2020-01-03
## 3340 0 0 2020-01-03
## 3341 0 0 2020-01-03
## 3342 10 0 2020-01-03
## 3343 2 1 2020-01-03
## 3344 41 10 2020-01-03
## 3345 0 0 2020-01-03
## 3346 8 0 2020-01-03
## 3347 0 0 2020-01-03
## 3348 5 1 2020-01-03
## 3349 8 0 2020-01-03
## 3350 0 0 2020-01-03
## 3351 4 0 2020-01-03
## 3352 0 0 2020-01-03
## 3353 7 1 2020-01-03
## 3354 0 0 2020-01-03
## 3355 12 1 2020-01-03
## 3356 30 2 2020-01-03
## 3357 55 2 2020-01-03
## 3358 29 2 2020-01-03
## 3359 8 0 2020-01-03
## 3360 11 1 2020-01-04
## 3361 4 0 2020-01-04
## 3362 0 0 2020-01-04
## 3363 4 0 2020-01-04
## 3364 16 0 2020-01-04
## 3365 28 3 2020-01-04
## 3366 4 3 2020-01-04
## 3367 575 31 2020-01-04
## 3368 10 0 2020-01-04
## 3369 5 0 2020-01-04
## 3370 7 3 2020-01-04
## 3371 14 2 2020-01-04
## 3372 0 0 2020-01-04
## 3373 7 4 2020-01-04
## 3374 4 0 2020-01-04
## 3375 10 0 2020-01-04
## 3376 0 0 2020-01-04
## 3377 2 0 2020-01-04
## 3378 137 3 2020-01-04
## 3379 8 4 2020-01-04
## 3380 30 31 2020-01-04
## 3381 10 3 2020-01-04
## 3382 11 1 2020-01-04
## 3383 23 0 2020-01-04
## 3384 98 10 2020-01-04
## 3385 45 0 2020-01-04
## 3386 337 20 2020-01-04
## 3387 5 1 2020-01-04
## 3388 3 1 2020-01-04
## 3389 1 0 2020-01-04
## 3390 0 0 2020-01-04
## 3391 19 3 2020-01-04
## 3392 6 1 2020-01-04
## 3393 48 4 2020-01-04
## 3394 35 2 2020-01-04
## 3395 21 0 2020-01-04
## 3396 1 0 2020-01-04
## 3397 10 0 2020-01-04
## 3398 3 0 2020-01-04
## 3399 6 0 2020-01-04
## 3400 104 7 2020-01-04
## 3401 300 3 2020-01-04
## 3402 6 0 2020-01-04
## 3403 8 0 2020-01-04
## 3404 6 0 2020-01-04
## 3405 3 0 2020-01-04
## 3406 0 0 2020-01-04
## 3407 23 2 2020-01-04
## 3408 12 1 2020-01-04
## 3409 67 1 2020-01-04
## 3410 0 0 2020-01-04
## 3411 0 0 2020-01-04
## 3412 43 3 2020-01-04
## 3413 49 3 2020-01-04
## 3414 8 0 2020-01-04
## 3415 16 2 2020-01-04
## 3416 22 1 2020-01-04
## 3417 10 3 2020-01-04
## 3418 13 0 2020-01-04
## 3419 6 0 2020-01-04
## 3420 6 2 2020-01-04
## 3421 374 23 2020-01-04
## 3422 0 0 2020-01-04
## 3423 77 1 2020-01-04
## 3424 0 0 2020-01-04
## 3425 0 0 2020-01-04
## 3426 15 0 2020-01-04
## 3427 345 7 2020-01-04
## 3428 43 11 2020-01-04
## 3429 15 1 2020-01-04
## 3430 9 1 2020-01-04
## 3431 5 0 2020-01-04
## 3432 0 0 2020-01-04
## 3433 9 0 2020-01-04
## 3434 0 0 2020-01-04
## 3435 109 0 2020-01-04
## 3436 64 5 2020-01-04
## 3437 79 10 2020-01-04
## 3438 8 0 2020-01-04
## 3439 8 0 2020-01-04
## 3440 2 0 2020-01-04
## 3441 14 2 2020-01-04
## 3442 1 0 2020-01-04
## 3443 10 0 2020-01-04
## 3444 37 0 2020-01-04
## 3445 7 0 2020-01-04
## 3446 9 1 2020-01-04
## 3447 24 0 2020-01-04
## 3448 0 0 2020-01-04
## 3449 31 3 2020-01-04
## 3450 15 0 2020-01-04
## 3451 72 4 2020-01-04
## 3452 3 0 2020-01-04
## 3453 54 2 2020-01-04
## 3454 43 0 2020-01-04
## 3455 12 1 2020-01-04
## 3456 10 2 2020-01-04
## 3457 1 0 2020-01-04
## 3458 44 8 2020-01-04
## 3459 65 12 2020-01-04
## 3460 7 0 2020-01-04
## 3461 22 7 2020-01-04
## 3462 16 1 2020-01-04
## 3463 13 0 2020-01-04
## 3464 75 0 2020-01-04
## 3465 9 0 2020-01-04
## 3466 363 25 2020-01-04
## 3467 24 7 2020-01-04
## 3468 7 0 2020-01-04
## 3469 10 0 2020-01-04
## 3470 0 0 2020-01-04
## 3471 72 5 2020-01-04
## 3472 13 15 2020-01-04
## 3473 21 2 2020-01-04
## 3474 14 1 2020-01-04
## 3475 2 0 2020-01-04
## 3476 7 1 2020-01-04
## 3477 12 2 2020-01-04
## 3478 3 1 2020-01-04
## 3479 797 61 2020-01-04
## 3480 41 9 2020-01-04
## 3481 0 0 2020-01-04
## 3482 13 1 2020-01-04
## 3483 145 25 2020-01-04
## 3484 28 1 2020-01-04
## 3485 270 183 2020-01-04
## 3486 24 2 2020-01-04
## 3487 10 2 2020-01-04
## 3488 37 0 2020-01-04
## 3489 8 0 2020-01-04
## 3490 13 1 2020-01-04
## 3491 38 9 2020-01-04
## 3492 35 5 2020-01-04
## 3493 84 59 2020-01-04
## 3494 287 11 2020-01-04
## 3495 12 4 2020-01-04
## 3496 10 0 2020-01-04
## 3497 18 1 2020-01-04
## 3498 12 0 2020-01-04
## 3499 0 0 2020-01-04
## 3500 0 0 2020-01-04
## 3501 1 1 2020-01-04
## 3502 3 0 2020-01-04
## 3503 9 0 2020-01-04
## 3504 33 1 2020-01-04
## 3505 0 3 2020-01-04
## 3506 598 31 2020-01-04
## 3507 32 2 2020-01-04
## 3508 8 1 2020-01-04
## 3509 3 0 2020-01-04
## 3510 9 3 2020-01-04
## 3511 14 1 2020-01-04
## 3512 119 3 2020-01-04
## 3513 2 0 2020-01-04
## 3514 7 0 2020-01-04
## 3515 49 4 2020-01-04
## 3516 28 1 2020-01-04
## 3517 25 0 2020-01-04
## 3518 12 0 2020-01-04
## 3519 26 8 2020-01-04
## 3520 1 1 2020-01-04
## 3521 1 0 2020-01-04
## 3522 169 3 2020-01-04
## 3523 6 0 2020-01-04
## 3524 43 1 2020-01-04
## 3525 6 0 2020-01-04
## 3526 3 0 2020-01-04
## 3527 0 0 2020-01-04
## 3528 0 0 2020-01-04
## 3529 0 0 2020-01-04
## 3530 38 4 2020-01-04
## 3531 4 0 2020-01-04
## 3532 59 4 2020-01-04
## 3533 9 1 2020-01-04
## 3534 20 0 2020-01-04
## 3535 45 2 2020-01-04
## 3536 19 2 2020-01-04
## 3537 8 1 2020-01-04
## 3538 22 12 2020-01-04
## 3539 20 2 2020-01-04
## 3540 6 0 2020-01-04
## 3541 4 1 2020-01-04
## 3542 10 4 2020-01-04
## 3543 4 1 2020-01-04
## 3544 39 1 2020-01-04
## 3545 18 4 2020-01-04
## 3546 18 0 2020-01-04
## 3547 51 0 2020-01-04
## 3548 10 0 2020-01-04
## 3549 37 1 2020-01-04
## 3550 13 10 2020-01-04
## 3551 10 1 2020-01-04
## 3552 7 0 2020-01-04
## 3553 90 5 2020-01-04
## 3554 12 0 2020-01-04
## 3555 0 0 2020-01-04
## 3556 14 0 2020-01-04
## 3557 19 5 2020-01-04
## 3558 4 0 2020-01-04
## 3559 5 0 2020-01-04
## 3560 11 0 2020-01-04
## 3561 167 10 2020-01-04
## 3562 3 0 2020-01-04
## 3563 33 5 2020-01-04
## 3564 14 1 2020-01-04
## 3565 2 0 2020-01-04
## 3566 30 5 2020-01-04
## 3567 174 18 2020-01-04
## 3568 16 6 2020-01-04
## 3569 29 2 2020-01-04
## 3570 9 0 2020-01-04
## 3571 30 0 2020-01-04
## 3572 0 0 2020-01-04
## 3573 7 0 2020-01-04
## 3574 115 9 2020-01-04
## 3575 8 0 2020-01-04
## 3576 5 0 2020-01-04
## 3577 19 0 2020-01-04
## 3578 276 37 2020-01-04
## 3579 2 0 2020-01-04
## 3580 0 0 2020-01-04
## 3581 21 0 2020-01-04
## 3582 18 1 2020-01-04
## 3583 36 1 2020-01-04
## 3584 5 0 2020-01-04
## 3585 9 0 2020-01-03
## 3586 4 0 2020-01-03
## 3587 51 2 2020-01-03
## 3588 6 1 2020-01-03
## 3589 11 2 2020-01-03
## 3590 10 2 2020-01-03
## 3591 8 1 2020-01-03
## 3592 9 0 2020-01-03
## 3593 0 0 2020-01-03
## 3594 52 0 2020-01-03
## 3595 13 2 2020-01-03
## 3596 49 4 2020-01-03
## 3597 5 1 2020-01-03
## 3598 76 14 2020-01-03
## 3599 13 0 2020-01-03
## 3600 9 0 2020-01-03
## 3601 17 4 2020-01-03
## 3602 5 0 2020-01-03
## 3603 8 4 2020-01-03
## 3604 0 0 2020-01-03
## 3605 76 6 2020-01-03
## 3606 20 1 2020-01-03
## 3607 15 0 2020-01-03
## 3608 105 6 2020-01-03
## 3609 29 2 2020-01-03
## 3610 3 3 2020-01-03
## 3611 0 0 2020-01-03
## 3612 15 2 2020-01-03
## 3613 7 0 2020-01-03
## 3614 4 0 2020-01-03
## 3615 25 1 2020-01-03
## 3616 12 3 2020-01-03
## 3617 12 0 2020-01-03
## 3618 14 2 2020-01-03
## 3619 12 0 2020-01-03
## 3620 10 1 2020-01-03
## 3621 20 0 2020-01-03
## 3622 29 0 2020-01-03
## 3623 4 1 2020-01-03
## 3624 6 0 2020-01-03
## 3625 1 0 2020-01-03
## 3626 24 2 2020-01-03
## 3627 102 5 2020-01-03
## 3628 2 2 2020-01-03
## 3629 2 0 2020-01-03
## 3630 5 0 2020-01-03
## 3631 8 1 2020-01-03
## 3632 3 0 2020-01-03
## 3633 48 6 2020-01-03
## 3634 5 0 2020-01-03
## 3635 7 3 2020-01-03
## 3636 12 0 2020-01-03
## 3637 28 8 2020-01-03
## 3638 8 1 2020-01-03
## 3639 28 5 2020-01-03
## 3640 554 40 2020-01-03
## 3641 10 0 2020-01-03
## 3642 3 1 2020-01-03
## 3643 3 0 2020-01-03
## 3644 38 0 2020-01-03
## 3645 9 1 2020-01-03
## 3646 19 2 2020-01-03
## 3647 1 0 2020-01-03
## 3648 0 0 2020-01-03
## 3649 1 0 2020-01-03
## 3650 0 0 2020-01-03
## 3651 5 0 2020-01-03
## 3652 2 2 2020-01-03
## 3653 0 0 2020-01-03
## 3654 5 0 2020-01-03
## 3655 36 3 2020-01-03
## 3656 1 2 2020-01-03
## 3657 6 0 2020-01-03
## 3658 0 0 2020-01-03
## 3659 0 0 2020-01-03
## 3660 12 0 2020-01-03
## 3661 1 2 2020-01-03
## 3662 8 0 2020-01-03
## 3663 272 20 2020-01-03
## 3664 15 0 2020-01-03
## 3665 3 1 2020-01-03
## 3666 15 8 2020-01-03
## 3667 1 1 2020-01-03
## 3668 7 2 2020-01-03
## 3669 4 0 2020-01-03
## 3670 6 1 2020-01-03
## 3671 4 0 2020-01-03
## 3672 4 1 2020-01-03
## 3673 5 0 2020-01-03
## 3674 29 4 2020-01-03
## 3675 1 0 2020-01-03
## 3676 2 2 2020-01-03
## 3677 0 0 2020-01-03
## 3678 4 2 2020-01-03
## 3679 9 0 2020-01-03
## 3680 2 2 2020-01-03
## 3681 4 0 2020-01-03
## 3682 2 0 2020-01-03
## 3683 14 0 2020-01-03
## 3684 37 5 2020-01-03
## 3685 59 0 2020-01-03
## 3686 7 3 2020-01-03
## 3687 0 0 2020-01-03
## 3688 563 7 2020-01-03
## 3689 6 0 2020-01-03
## 3690 0 0 2020-01-03
## 3691 1 0 2020-01-03
## 3692 7 1 2020-01-03
## 3693 0 0 2020-01-03
## 3694 10 1 2020-01-03
## 3695 0 0 2020-01-03
## 3696 124 6 2020-01-03
## 3697 3 0 2020-01-03
## 3698 3 1 2020-01-03
## 3699 0 1 2020-01-03
## 3700 2 0 2020-01-03
## 3701 9 0 2020-01-03
## 3702 0 0 2020-01-03
## 3703 2 5 2020-01-03
## 3704 4 0 2020-01-03
## 3705 0 0 2020-01-03
## 3706 4 0 2020-01-03
## 3707 27 4 2020-01-03
## 3708 33 2 2020-01-03
## 3709 21 3 2020-01-03
## 3710 9 0 2020-01-03
## 3711 8 1 2020-01-03
## 3712 68 4 2020-01-03
## 3713 35 3 2020-01-03
## 3714 7 0 2020-01-03
## 3715 5 0 2020-01-03
## 3716 2 2 2020-01-03
## 3717 3 0 2020-01-03
## 3718 38 10 2020-01-03
## 3719 62 3 2020-01-03
## 3720 2 0 2020-01-03
## 3721 2 1 2020-01-03
## 3722 7 2 2020-01-03
## 3723 52 2 2020-01-03
## 3724 15 0 2020-01-03
## 3725 16 1 2020-01-03
## 3726 28 6 2020-01-03
## 3727 171 4 2020-01-03
## 3728 23 1 2020-01-03
## 3729 1271 117 2020-01-03
## 3730 19 2 2020-01-03
## 3731 80 5 2020-01-03
## 3732 1 0 2020-01-03
## 3733 3 0 2020-01-03
## 3734 8 1 2020-01-03
## 3735 1 1 2020-01-03
## 3736 5 3 2020-01-03
## 3737 25 5 2020-01-03
## 3738 21 3 2020-01-03
## 3739 2 0 2020-01-03
## 3740 0 0 2020-01-03
## 3741 0 0 2020-01-03
## 3742 1 0 2020-01-03
## 3743 6 0 2020-01-03
## 3744 5 0 2020-01-03
## 3745 7 0 2020-01-03
## 3746 17 0 2020-01-03
## 3747 7 1 2020-01-03
## 3748 92 4 2020-01-03
## 3749 9 1 2020-01-03
## 3750 14 1 2020-01-03
## 3751 4 0 2020-01-03
## 3752 21 0 2020-01-03
## 3753 13 0 2020-01-03
## 3754 6 1 2020-01-03
## 3755 4 0 2020-01-03
## 3756 1 0 2020-01-03
## 3757 8 0 2020-01-03
## 3758 30 1 2020-01-03
## 3759 5 0 2020-01-03
## 3760 173 11 2020-01-03
## 3761 8 0 2020-01-03
## 3762 8 1 2020-01-03
## 3763 2 6 2020-01-03
## 3764 0 0 2020-01-03
## 3765 11 0 2020-01-03
## 3766 1 0 2020-01-03
## 3767 7 5 2020-01-03
## 3768 6 0 2020-01-03
## 3769 4 0 2020-01-03
## 3770 3 0 2020-01-03
## 3771 17 0 2020-01-03
## 3772 7 3 2020-01-03
## 3773 3 0 2020-01-03
## 3774 855 16 2020-01-03
## 3775 12 0 2020-01-03
## 3776 2 0 2020-01-03
## 3777 2 0 2020-01-03
## 3778 0 0 2020-01-03
## 3779 3 0 2020-01-03
## 3780 4 0 2020-01-03
## 3781 6 0 2020-01-03
## 3782 12 0 2020-01-03
## 3783 32 4 2020-01-03
## 3784 19 0 2020-01-03
## 3785 1 0 2020-01-03
## 3786 2 1 2020-01-03
## 3787 8 0 2020-01-03
## 3788 10 1 2020-01-03
## 3789 9 0 2020-01-03
## 3790 7 0 2020-01-03
## 3791 1599 63 2020-01-03
## 3792 3 0 2020-01-03
## 3793 43 5 2020-01-03
## 3794 4 0 2020-01-03
## 3795 21 9 2020-01-03
## 3796 48 1 2020-01-03
## 3797 5 1 2020-01-03
## 3798 3 0 2020-01-03
## 3799 0 0 2020-01-03
## 3800 32 1 2020-01-03
## 3801 5 0 2020-01-03
## 3802 6 0 2020-01-03
## 3803 0 0 2020-01-03
## 3804 0 0 2020-01-03
## 3805 0 1 2020-01-03
## 3806 16 2 2020-01-03
## 3807 4 0 2020-01-03
## 3808 2 0 2020-01-03
## 3809 38 0 2020-01-03
## 3810 79 6 2020-01-03
## 3811 12 0 2020-01-03
## 3812 5 2 2020-01-03
## 3813 15 1 2020-01-03
## 3814 3 6 2020-01-03
## 3815 7 0 2020-01-03
## 3816 14 0 2020-01-03
## 3817 0 0 2020-01-03
## 3818 0 0 2020-01-03
## 3819 5 1 2020-01-03
## 3820 18 0 2020-01-03
## 3821 67 23 2020-01-03
## 3822 0 0 2020-01-03
## 3823 1 0 2020-01-03
## 3824 1 2 2020-01-03
## 3825 13 1 2020-01-03
## 3826 0 0 2020-01-03
## 3827 7 0 2020-01-03
## 3828 0 0 2020-01-03
## 3829 17 1 2020-01-03
## 3830 4 0 2020-01-03
## 3831 45 5 2020-01-03
## 3832 2 0 2020-01-03
## 3833 92 4 2020-01-03
## 3834 3 0 2020-01-03
## 3835 1 0 2020-01-03
## 3836 0 0 2020-01-03
## 3837 3 1 2020-01-03
## 3838 3 0 2020-01-03
## 3839 16 0 2020-01-03
## 3840 0 0 2020-01-03
## 3841 5 2 2020-01-03
## 3842 52 8 2020-01-03
## 3843 13 3 2020-01-03
## 3844 4 0 2020-01-03
## 3845 2 0 2020-01-03
## 3846 7 0 2020-01-03
## 3847 71 5 2020-01-03
## 3848 0 0 2020-01-03
## 3849 11 1 2020-01-03
## 3850 59 1 2020-01-03
## 3851 3 3 2020-01-03
## 3852 5 0 2020-01-03
## 3853 18 3 2020-01-03
## 3854 12 0 2020-01-03
## 3855 4 0 2020-01-03
## 3856 13 0 2020-01-03
## 3857 119 63 2020-01-03
## 3858 18 0 2020-01-03
## 3859 7 0 2020-01-03
## 3860 194 15 2020-01-04
## 3861 0 0 2020-01-04
## 3862 9 0 2020-01-04
## 3863 99 95 2020-01-04
## 3864 3 0 2020-01-04
## 3865 11 3 2020-01-04
## 3866 0 0 2020-01-04
## 3867 6 2 2020-01-04
## 3868 46 1 2020-01-04
## 3869 0 0 2020-01-04
## 3870 82 5 2020-01-04
## 3871 0 0 2020-01-04
## 3872 10 1 2020-01-04
## 3873 15 0 2020-01-04
## 3874 5 1 2020-01-04
## 3875 37 4 2020-01-04
## 3876 1 0 2020-01-04
## 3877 6 0 2020-01-04
## 3878 56 5 2020-01-04
## 3879 9 0 2020-01-04
## 3880 0 0 2020-01-04
## 3881 11 1 2020-01-04
## 3882 31 0 2020-01-04
## 3883 3 0 2020-01-04
## 3884 36 9 2020-01-04
## 3885 31 2 2020-01-04
## 3886 50 3 2020-01-04
## 3887 5 1 2020-01-04
## 3888 47 1 2020-01-04
## 3889 6 1 2020-01-04
## 3890 7 0 2020-01-04
## 3891 0 0 2020-01-04
## 3892 6 1 2020-01-04
## 3893 45 2 2020-01-04
## 3894 12 1 2020-01-04
## 3895 7 0 2020-01-04
## 3896 35 1 2020-01-04
## 3897 10 0 2020-01-04
## 3898 0 0 2020-01-04
## 3899 7 0 2020-01-04
## 3900 12 0 2020-01-04
## 3901 2 2 2020-01-04
## 3902 7 0 2020-01-04
## 3903 24 4 2020-01-04
## 3904 7 0 2020-01-04
## 3905 3 3 2020-01-04
## 3906 43 4 2020-01-04
## 3907 50 14 2020-01-04
## 3908 4 0 2020-01-04
## 3909 57 0 2020-01-04
## 3910 4 2 2020-01-04
## 3911 5 0 2020-01-04
## 3912 14 1 2020-01-04
## 3913 14 2 2020-01-04
## 3914 1 0 2020-01-04
## 3915 54 1 2020-01-04
## 3916 24 2 2020-01-04
## 3917 87 2 2020-01-04
## 3918 6 0 2020-01-04
## 3919 0 0 2020-01-04
## 3920 21 0 2020-01-04
## 3921 3 0 2020-01-04
## 3922 68 43 2020-01-04
## 3923 73 1 2020-01-04
## 3924 0 0 2020-01-04
## 3925 22 3 2020-01-04
## 3926 66 2 2020-01-04
## 3927 9 2 2020-01-04
## 3928 34 1 2020-01-04
## 3929 0 0 2020-01-04
## 3930 20 23 2020-01-04
## 3931 0 0 2020-01-04
## 3932 9 1 2020-01-04
## 3933 67 2 2020-01-04
## 3934 0 0 2020-01-04
## 3935 53 3 2020-01-04
## 3936 5 1 2020-01-04
## 3937 15 1 2020-01-04
## 3938 0 0 2020-01-04
## 3939 0 0 2020-01-04
## 3940 0 0 2020-01-04
## 3941 222 22 2020-01-04
## 3942 4 0 2020-01-04
## 3943 13 1 2020-01-04
## 3944 10 1 2020-01-04
## 3945 5 0 2020-01-04
## 3946 6 1 2020-01-04
## 3947 14 0 2020-01-04
## 3948 18 0 2020-01-04
## 3949 11 0 2020-01-04
## 3950 42 2 2020-01-04
## 3951 460 68 2020-01-04
## 3952 22 0 2020-01-04
## 3953 3 0 2020-01-04
## 3954 18 0 2020-01-04
## 3955 7 0 2020-01-04
## 3956 9 0 2020-01-04
## 3957 15 0 2020-01-04
## 3958 46 2 2020-01-04
## 3959 5 2 2020-01-04
## 3960 5 0 2020-01-04
## 3961 15 1 2020-01-04
## 3962 3 0 2020-01-04
## 3963 6 1 2020-01-04
## 3964 25 0 2020-01-04
## 3965 11 0 2020-01-04
## 3966 18 4 2020-01-04
## 3967 20 2 2020-01-04
## 3968 13 0 2020-01-04
## 3969 5 0 2020-01-04
## 3970 7 1 2020-01-04
## 3971 31 1 2020-01-04
## 3972 7 0 2020-01-04
## 3973 9 3 2020-01-04
## 3974 2 1 2020-01-04
## 3975 16 2 2020-01-04
## 3976 2 0 2020-01-04
## 3977 3 0 2020-01-04
## 3978 8 0 2020-01-04
## 3979 167 2 2020-01-04
## 3980 18 1 2020-01-04
## 3981 27 2 2020-01-04
## 3982 87 59 2020-01-04
## 3983 9 1 2020-01-04
## 3984 13 0 2020-01-04
## 3985 13 1 2020-01-04
## 3986 52 0 2020-01-04
## 3987 5 0 2020-01-04
## 3988 3 1 2020-01-04
## 3989 28 1 2020-01-04
## 3990 4 2 2020-01-04
## 3991 18 1 2020-01-04
## 3992 5 0 2020-01-04
## 3993 10 2 2020-01-04
## 3994 10 2 2020-01-04
## 3995 155 14 2020-01-04
## 3996 9 1 2020-01-04
## 3997 1 0 2020-01-04
## 3998 73 6 2020-01-04
## 3999 9 1 2020-01-04
## 4000 0 0 2020-01-04
## 4001 5 0 2020-01-04
## 4002 8 0 2020-01-04
## 4003 8 0 2020-01-04
## 4004 24 6 2020-01-04
## 4005 10 3 2020-01-04
## 4006 0 0 2020-01-04
## 4007 0 0 2020-01-04
## 4008 0 0 2020-01-04
## 4009 0 0 2020-01-04
## 4010 0 0 2020-01-04
## 4011 18 4 2020-01-04
## 4012 19 1 2020-01-04
## 4013 5 0 2020-01-04
## 4014 10 1 2020-01-04
## 4015 41 4 2020-01-04
## 4016 16 0 2020-01-04
## 4017 0 0 2020-01-04
## 4018 10 0 2020-01-04
## 4019 32 7 2020-01-04
## 4020 0 0 2020-01-04
## 4021 5 1 2020-01-04
## 4022 8 0 2020-01-04
## 4023 23 0 2020-01-04
## 4024 6 0 2020-01-04
## 4025 17 0 2020-01-04
## 4026 1 0 2020-01-04
## 4027 8 0 2020-01-04
## 4028 28 1 2020-01-04
## 4029 12 1 2020-01-04
## 4030 4 2 2020-01-04
## 4031 83 5 2020-01-04
## 4032 17 0 2020-01-04
## 4033 1 1 2020-01-04
## 4034 4 1 2020-01-04
## 4035 2 0 2020-01-04
## 4036 34 4 2020-01-04
## 4037 65 1 2020-01-04
## 4038 11 1 2020-01-04
## 4039 35 6 2020-01-04
## 4040 34 3 2020-01-04
## 4041 0 0 2020-01-04
## 4042 0 0 2020-01-04
## 4043 1 0 2020-01-04
## 4044 64 3 2020-01-04
## 4045 0 0 2020-01-04
## 4046 6 2 2020-01-04
## 4047 10 1 2020-01-04
## 4048 26 0 2020-01-04
## 4049 2 0 2020-01-04
## 4050 20 1 2020-01-04
## 4051 5 2 2020-01-04
## 4052 153 7 2020-01-04
## 4053 15 1 2020-01-04
## 4054 7 0 2020-01-04
## 4055 2177 92 2020-01-04
## 4056 21 1 2020-01-04
## 4057 12 2 2020-01-04
## 4058 30 1 2020-01-04
## 4059 5 0 2020-01-04
## 4060 8 6 2020-01-04
## 4061 3 0 2020-01-04
## 4062 5 0 2020-01-04
## 4063 292 48 2020-01-04
## 4064 25 1 2020-01-04
## 4065 24 2 2020-01-04
## 4066 6 0 2020-01-04
## 4067 10 0 2020-01-04
## 4068 11 2 2020-01-04
## 4069 8 0 2020-01-04
## 4070 39 2 2020-01-04
## 4071 17 2 2020-01-04
## 4072 7 0 2020-01-04
## 4073 11 2 2020-01-04
## 4074 10 1 2020-01-04
## 4075 7 1 2020-01-04
## 4076 286 51 2020-01-04
## 4077 37 5 2020-01-04
## 4078 0 0 2020-01-04
## 4079 67 6 2020-01-04
## 4080 9 0 2020-01-04
## 4081 69 2 2020-01-04
## 4082 1 0 2020-01-04
## 4083 63 1 2020-01-04
## 4084 2 0 2020-01-04
## 4085 5 0 2020-01-04
## 4086 0 0 2020-01-04
## 4087 19 0 2020-01-04
## 4088 0 0 2020-01-04
## 4089 17 1 2020-01-04
## 4090 6 0 2020-01-04
## 4091 58 2 2020-01-04
## 4092 424 29 2020-01-04
## 4093 31 0 2020-01-04
## 4094 36 0 2020-01-04
## 4095 10 0 2020-01-04
## 4096 10 2 2020-01-04
## 4097 5 0 2020-01-04
## 4098 19 0 2020-01-04
## 4099 0 0 2020-01-04
## 4100 11 0 2020-01-04
## 4101 0 0 2020-01-04
## 4102 0 0 2020-01-04
## 4103 4 0 2020-01-04
## 4104 14 1 2020-01-04
## 4105 3 2 2020-01-04
## 4106 3 1 2020-01-04
## 4107 0 0 2020-01-04
## 4108 6 0 2020-01-04
## 4109 0 0 2020-01-04
## 4110 2 0 2020-01-04
## 4111 43 19 2020-01-04
## 4112 8 0 2020-01-04
## 4113 1 0 2020-01-04
## 4114 9 0 2020-01-04
## 4115 7 1 2020-01-04
## 4116 16 0 2020-01-04
## 4117 95 4 2020-01-04
## 4118 2 0 2020-01-04
## 4119 7 0 2020-01-04
## 4120 26 3 2020-01-04
## 4121 2 1 2020-01-04
## 4122 262 1 2020-01-04
## 4123 16 1 2020-01-04
## 4124 0 0 2020-01-04
## 4125 13 7 2020-01-04
## 4126 13 1 2020-01-04
## 4127 45 8 2020-01-04
## 4128 14 3 2020-01-04
## 4129 59 4 2020-01-04
## 4130 0 0 2020-01-04
## 4131 11 1 2020-01-04
## 4132 0 0 2020-01-04
## 4133 73 5 2020-01-04
## 4134 0 0 2020-01-04
## 4135 105 292 2020-01-04
## 4136 29 9 2020-01-04
## 4137 0 0 2020-01-04
## 4138 11 0 2020-01-04
## 4139 103 6 2020-01-04
## 4140 0 0 2020-01-04
## 4141 0 0 2020-01-04
## 4142 6 2 2020-01-04
## 4143 23 0 2020-01-04
## 4144 88 11 2020-01-04
## 4145 4 0 2020-01-04
## 4146 2 0 2020-01-04
## 4147 36 4 2020-01-04
## 4148 1 0 2020-01-04
## 4149 36 2 2020-01-04
## 4150 4 0 2020-01-04
## 4151 0 0 2020-01-04
## 4152 33 5 2020-01-04
## 4153 0 0 2020-01-04
## 4154 4 1 2020-01-04
## 4155 41 3 2020-01-04
## 4156 678 73 2020-01-04
## 4157 30 16 2020-01-04
## 4158 56 9 2020-01-04
## 4159 11 1 2020-01-04
## 4160 79 8 2020-01-04
## 4161 0 0 2020-01-04
## 4162 7 6 2020-01-04
## 4163 69 2 2020-01-04
## 4164 16 0 2020-01-04
## 4165 76 4 2020-01-04
## 4166 56 0 2020-01-04
## 4167 2 0 2020-01-04
## 4168 6 0 2020-01-04
## 4169 27 1 2020-01-04
## 4170 0 0 2020-01-04
## 4171 4 0 2020-01-04
## 4172 3 0 2020-01-04
## 4173 10 0 2020-01-04
## 4174 0 0 2020-01-04
## 4175 20 0 2020-01-04
## 4176 0 0 2020-01-04
## 4177 104 6 2020-01-04
## 4178 15 1 2020-01-04
## 4179 4 0 2020-01-04
## 4180 65 8 2020-01-04
## 4181 20 0 2020-01-04
## 4182 14 2 2020-01-04
## 4183 2 0 2020-01-04
## 4184 1 0 2020-01-04
## 4185 0 0 2020-01-04
## 4186 0 0 2020-01-04
## 4187 11 1 2020-01-04
## 4188 185 10 2020-01-04
## 4189 85 3 2020-01-04
## 4190 3 0 2020-01-04
## 4191 43 1 2020-01-04
## 4192 6 0 2020-01-04
## 4193 7 2 2020-01-04
## 4194 6 1 2020-01-04
## 4195 96 4 2020-01-04
## 4196 85 5 2020-01-04
## 4197 34 4 2020-01-04
## 4198 0 0 2020-01-04
## 4199 65 3 2020-01-04
## 4200 0 0 2020-01-04
## 4201 2 0 2020-01-04
## 4202 15 0 2020-01-04
## 4203 5 0 2020-01-04
## 4204 21 3 2020-01-04
## 4205 19 0 2020-01-04
## 4206 8 0 2020-01-04
## 4207 3 0 2020-01-04
## 4208 5 1 2020-01-04
## 4209 26 0 2020-01-04
## 4210 0 0 2020-01-04
## 4211 18 0 2020-01-04
## 4212 7 0 2020-01-04
## 4213 7 0 2020-01-04
## 4214 42 0 2020-01-04
## 4215 34 8 2020-01-04
## 4216 0 0 2020-01-04
## 4217 0 0 2020-01-04
## 4218 51 10 2020-01-04
## 4219 51 2 2020-01-04
## 4220 7 0 2020-01-04
## 4221 21 2 2020-01-04
## 4222 3 0 2020-01-04
## 4223 99 7 2020-01-04
## 4224 0 0 2020-01-04
## 4225 8 0 2020-01-04
## 4226 17 0 2020-01-04
## 4227 0 0 2020-01-04
## 4228 0 0 2020-01-04
## 4229 13 2 2020-01-04
## 4230 0 0 2020-01-04
## 4231 24 4 2020-01-04
## 4232 11 0 2020-01-04
## 4233 12 0 2020-01-04
## 4234 82 3 2020-01-04
## 4235 0 0 2020-01-04
## 4236 0 0 2020-01-04
## 4237 3 1 2020-01-04
## 4238 5 0 2020-01-04
## 4239 165 15 2020-01-04
## 4240 2 1 2020-01-04
## 4241 5 1 2020-01-04
## 4242 88 4 2020-01-04
## 4243 0 0 2020-01-04
## 4244 7 1 2020-01-04
## 4245 10 1 2020-01-04
## 4246 8 2 2020-01-04
## 4247 81 7 2020-01-04
## 4248 5 1 2020-01-04
## 4249 47 6 2020-01-04
## 4250 56 1 2020-01-04
## 4251 49 10 2020-01-04
## 4252 4 0 2020-01-04
## 4253 42 3 2020-01-04
## 4254 3 0 2020-01-04
## 4255 0 0 2020-01-04
## 4256 2 0 2020-01-04
## 4257 7 0 2020-01-04
## 4258 31 1 2020-01-04
## 4259 18 0 2020-01-04
## 4260 0 0 2020-01-04
## 4261 0 0 2020-01-04
## 4262 9 5 2020-01-04
## 4263 33 1 2020-01-04
## 4264 14 0 2020-01-04
## 4265 0 0 2020-01-04
## 4266 52 2 2020-01-04
## 4267 4 0 2020-01-04
## 4268 8 2 2020-01-04
## 4269 20 4 2020-01-04
## 4270 7 1 2020-01-04
## 4271 8 1 2020-01-04
## 4272 3 0 2020-01-04
## 4273 145 5 2020-01-04
## 4274 55 1 2020-01-04
## 4275 0 0 2020-01-04
## 4276 28 2 2020-01-04
## 4277 0 0 2020-01-04
## 4278 1 1 2020-01-04
## 4279 3 0 2020-01-04
## 4280 24 0 2020-01-04
## 4281 6 0 2020-01-04
## 4282 13 1 2020-01-04
## 4283 2 1 2020-01-04
## 4284 5 2 2020-01-04
## 4285 256 17 2020-01-04
## 4286 2 0 2020-01-04
## 4287 176 8 2020-01-04
## 4288 5 1 2020-01-04
## 4289 6 0 2020-01-04
## 4290 56 3 2020-01-04
## 4291 0 0 2020-01-04
## 4292 32 0 2020-01-04
## 4293 8 0 2020-01-04
## 4294 5 0 2020-01-04
## 4295 0 0 2020-01-04
## 4296 846 1293 2020-01-04
## 4297 0 0 2020-01-04
## 4298 6 0 2020-01-04
## 4299 8 0 2020-01-04
## 4300 33 0 2020-01-04
## 4301 17 0 2020-01-04
## 4302 0 0 2020-01-04
## 4303 202 18 2020-01-04
## 4304 0 0 2020-01-04
## 4305 18 0 2020-01-04
## 4306 1 0 2020-01-04
## 4307 4 0 2020-01-04
## 4308 8 1 2020-01-04
## 4309 1 0 2020-01-04
## 4310 49 4 2020-01-04
## 4311 0 0 2020-01-04
## 4312 0 0 2020-01-04
## 4313 3 1 2020-01-04
## 4314 75 8 2020-01-04
## 4315 2 1 2020-01-04
## 4316 13 2 2020-01-04
## 4317 0 0 2020-01-04
## 4318 2 1 2020-01-04
## 4319 6 0 2020-01-04
## 4320 5 0 2020-01-04
## 4321 23 2 2020-01-04
## 4322 0 0 2020-01-04
## 4323 9 1 2020-01-04
## 4324 9 4 2020-01-04
## 4325 67 5 2020-01-04
## 4326 6 0 2020-01-04
## 4327 18 0 2020-01-04
## 4328 192 8 2020-01-04
## 4329 8 0 2020-01-04
## 4330 4 0 2020-01-04
## 4331 3 2 2020-01-04
## 4332 0 1 2020-01-04
## 4333 41 9 2020-01-04
## 4334 203 13 2020-01-04
## 4335 6 0 2020-01-04
## 4336 9 1 2020-01-04
## 4337 68 5 2020-01-04
## 4338 15 0 2020-01-04
## 4339 4 2 2020-01-04
## 4340 3 0 2020-01-04
## 4341 78 8 2020-01-04
## 4342 2 1 2020-01-04
## 4343 0 0 2020-01-04
## 4344 0 0 2020-01-04
## 4345 8 3 2020-01-04
## 4346 15 3 2020-01-04
## 4347 49 6 2020-01-04
## 4348 188 27 2020-01-04
## 4349 0 0 2020-01-04
## 4350 83 3 2020-01-04
## 4351 0 0 2020-01-04
## 4352 81 132 2020-01-04
## 4353 0 0 2020-01-04
## 4354 28 3 2020-01-04
## 4355 20 1 2020-01-04
## 4356 2 0 2020-01-04
## 4357 45 11 2020-01-04
## 4358 0 0 2020-01-04
## 4359 30 7 2020-01-04
## 4360 39 2 2020-01-05
## 4361 2 1 2020-01-05
## 4362 42 1 2020-01-05
## 4363 2 0 2020-01-05
## 4364 3 1 2020-01-05
## 4365 0 0 2020-01-05
## 4366 3 0 2020-01-05
## 4367 2 0 2020-01-05
## 4368 7 3 2020-01-05
## 4369 4 0 2020-01-05
## 4370 1 0 2020-01-05
## 4371 41 4 2020-01-05
## 4372 1 0 2020-01-05
## 4373 33 0 2020-01-05
## 4374 318 3 2020-01-05
## 4375 3 1 2020-01-05
## 4376 7 0 2020-01-05
## 4377 5 0 2020-01-05
## 4378 44 3 2020-01-05
## 4379 3 0 2020-01-05
## 4380 14 1 2020-01-05
## 4381 8 3 2020-01-05
## 4382 45 3 2020-01-05
## 4383 0 0 2020-01-05
## 4384 21 0 2020-01-05
## 4385 58 3 2020-01-05
## 4386 12 1 2020-01-05
## 4387 28 1 2020-01-05
## 4388 0 0 2020-01-05
## 4389 3 0 2020-01-05
## 4390 2 0 2020-01-05
## 4391 310 26 2020-01-05
## 4392 1 0 2020-01-05
## 4393 10 1 2020-01-05
## 4394 2 0 2020-01-05
## 4395 21 0 2020-01-05
## 4396 15 4 2020-01-05
## 4397 6 0 2020-01-05
## 4398 610 6 2020-01-05
## 4399 0 0 2020-01-05
## 4400 2 0 2020-01-05
## 4401 109 3 2020-01-05
## 4402 0 0 2020-01-05
## 4403 8 2 2020-01-05
## 4404 0 0 2020-01-05
## 4405 0 0 2020-01-05
## 4406 12 1 2020-01-05
## 4407 9 0 2020-01-05
## 4408 619 83 2020-01-05
## 4409 1 0 2020-01-05
## 4410 11 0 2020-01-05
## 4411 39 1 2020-01-05
## 4412 107 5 2020-01-05
## 4413 3 1 2020-01-05
## 4414 5 1 2020-01-05
## 4415 5 1 2020-01-05
## 4416 8 0 2020-01-05
## 4417 32 2 2020-01-05
## 4418 0 0 2020-01-05
## 4419 133 6 2020-01-05
## 4420 1 0 2020-01-05
## 4421 0 0 2020-01-05
## 4422 45 5 2020-01-05
## 4423 48 1 2020-01-05
## 4424 0 0 2020-01-05
## 4425 82 30 2020-01-05
## 4426 0 0 2020-01-05
## 4427 241 13 2020-01-05
## 4428 26 3 2020-01-05
## 4429 10 0 2020-01-05
## 4430 33 3 2020-01-05
## 4431 0 0 2020-01-05
## 4432 22 0 2020-01-05
## 4433 0 0 2020-01-05
## 4434 0 0 2020-01-05
## 4435 2 1 2020-01-05
## 4436 0 0 2020-01-05
## 4437 13 0 2020-01-05
## 4438 2 1 2020-01-05
## 4439 2 0 2020-01-05
## 4440 20 2 2020-01-05
## 4441 11 0 2020-01-05
## 4442 3 0 2020-01-05
## 4443 27 1 2020-01-05
## 4444 23 10 2020-01-05
## 4445 33 2 2020-01-05
## 4446 18 0 2020-01-05
## 4447 1 1 2020-01-05
## 4448 60 1 2020-01-05
## 4449 2 1 2020-01-05
## 4450 2 0 2020-01-05
## 4451 134 19 2020-01-05
## 4452 5 1 2020-01-05
## 4453 18 1 2020-01-05
## 4454 5 1 2020-01-05
## 4455 2 0 2020-01-05
## 4456 26 3 2020-01-05
## 4457 35 5 2020-01-05
## 4458 11 30 2020-01-05
## 4459 4 0 2020-01-05
## 4460 322 157 2020-01-05
## 4461 0 0 2020-01-05
## 4462 10 0 2020-01-05
## 4463 0 0 2020-01-05
## 4464 8 0 2020-01-05
## 4465 8 1 2020-01-05
## 4466 87 2 2020-01-05
## 4467 52 2 2020-01-05
## 4468 5 1 2020-01-05
## 4469 0 0 2020-01-05
## 4470 6 0 2020-01-05
## 4471 0 0 2020-01-05
## 4472 2 4 2020-01-05
## 4473 23 3 2020-01-05
## 4474 9 1 2020-01-05
## 4475 4 1 2020-01-05
## 4476 124 4 2020-01-05
## 4477 1 0 2020-01-05
## 4478 2 1 2020-01-05
## 4479 2 0 2020-01-05
## 4480 0 0 2020-01-05
## 4481 21 2 2020-01-05
## 4482 5 0 2020-01-05
## 4483 18 1 2020-01-05
## 4484 98 4 2020-01-05
## 4485 0 0 2020-01-05
## 4486 1 0 2020-01-05
## 4487 0 0 2020-01-05
## 4488 7 1 2020-01-05
## 4489 11 1 2020-01-05
## 4490 0 0 2020-01-05
## 4491 12 1 2020-01-05
## 4492 15 1 2020-01-05
## 4493 1 0 2020-01-05
## 4494 84 5 2020-01-05
## 4495 54 5 2020-01-05
## 4496 6 0 2020-01-05
## 4497 1 1 2020-01-05
## 4498 10 0 2020-01-05
## 4499 1 1 2020-01-05
## 4500 3 0 2020-01-05
## 4501 43 1 2020-01-05
## 4502 27 2 2020-01-05
## 4503 99 5 2020-01-05
## 4504 27 4 2020-01-05
## 4505 1 0 2020-01-05
## 4506 7 0 2020-01-05
## 4507 0 0 2020-01-05
## 4508 29 3 2020-01-05
## 4509 0 0 2020-01-05
## 4510 16 2 2020-01-05
## 4511 6 0 2020-01-05
## 4512 99 3 2020-01-05
## 4513 5 0 2020-01-05
## 4514 3 0 2020-01-05
## 4515 12 0 2020-01-05
## 4516 3 0 2020-01-05
## 4517 7 2 2020-01-05
## 4518 60 4 2020-01-05
## 4519 4 0 2020-01-05
## 4520 0 0 2020-01-05
## 4521 0 0 2020-01-05
## 4522 2 0 2020-01-05
## 4523 0 0 2020-01-05
## 4524 0 0 2020-01-05
## 4525 5 4 2020-01-05
## 4526 67 2 2020-01-05
## 4527 12 4 2020-01-05
## 4528 3 0 2020-01-05
## 4529 6 0 2020-01-05
## 4530 3 0 2020-01-05
## 4531 9 3 2020-01-05
## 4532 11 2 2020-01-05
## 4533 11 1 2020-01-05
## 4534 3 0 2020-01-05
## 4535 0 0 2020-01-05
## 4536 103 2 2020-01-05
## 4537 16 0 2020-01-05
## 4538 0 0 2020-01-05
## 4539 23 3 2020-01-05
## 4540 0 0 2020-01-05
## 4541 11 0 2020-01-05
## 4542 113 11 2020-01-05
## 4543 14 0 2020-01-05
## 4544 13 0 2020-01-05
## 4545 0 0 2020-01-05
## 4546 5 1 2020-01-05
## 4547 7 0 2020-01-05
## 4548 20 2 2020-01-05
## 4549 0 0 2020-01-05
## 4550 6 2 2020-01-05
## 4551 6 1 2020-01-05
## 4552 3 0 2020-01-05
## 4553 2 0 2020-01-05
## 4554 1 0 2020-01-05
## 4555 5 0 2020-01-05
## 4556 11 0 2020-01-05
## 4557 0 0 2020-01-05
## 4558 7 0 2020-01-05
## 4559 0 0 2020-01-05
## 4560 5 3 2020-01-05
## 4561 95 1 2020-01-05
## 4562 30 2 2020-01-05
## 4563 12 0 2020-01-05
## 4564 5 1 2020-01-05
## 4565 29 3 2020-01-05
## 4566 24 1 2020-01-05
## 4567 1 0 2020-01-05
## 4568 3 0 2020-01-05
## 4569 24 6 2020-01-05
## 4570 3 0 2020-01-05
## 4571 67 2 2020-01-05
## 4572 1 1 2020-01-05
## 4573 0 0 2020-01-05
## 4574 29 0 2020-01-05
## 4575 12 2 2020-01-05
## 4576 0 0 2020-01-05
## 4577 28 5 2020-01-05
## 4578 94 10 2020-01-05
## 4579 94 24 2020-01-05
## 4580 12 2 2020-01-05
## 4581 5 0 2020-01-05
## 4582 36 1 2020-01-05
## 4583 0 0 2020-01-05
## 4584 25 0 2020-01-05
## 4585 0 0 2020-01-05
## 4586 17 5 2020-01-05
## 4587 35 0 2020-01-05
## 4588 33 0 2020-01-05
## 4589 6 1 2020-01-05
## 4590 25 0 2020-01-05
## 4591 7 0 2020-01-05
## 4592 17 1 2020-01-05
## 4593 561 10 2020-01-05
## 4594 0 0 2020-01-05
## 4595 7 0 2020-01-05
## 4596 6 1 2020-01-05
## 4597 138 5 2020-01-05
## 4598 16 1 2020-01-05
## 4599 45 6 2020-01-05
## 4600 6 1 2020-01-05
## 4601 19 3 2020-01-05
## 4602 4 0 2020-01-05
## 4603 15 0 2020-01-05
## 4604 42 4 2020-01-05
## 4605 96 12 2020-01-05
## 4606 98 2 2020-01-05
## 4607 26 2 2020-01-05
## 4608 4 1 2020-01-05
## 4609 4 2 2020-01-05
## 4610 9 0 2020-01-05
## 4611 22 1 2020-01-05
## 4612 78 2 2020-01-05
## 4613 60 5 2020-01-05
## 4614 25 2 2020-01-05
## 4615 41 3 2020-01-05
## 4616 21 6 2020-01-05
## 4617 0 0 2020-01-05
## 4618 61 2 2020-01-05
## 4619 16 3 2020-01-05
## 4620 0 0 2020-01-05
## 4621 5 0 2020-01-05
## 4622 5 0 2020-01-05
## 4623 36 2 2020-01-05
## 4624 41 1 2020-01-05
## 4625 209 9 2020-01-05
## 4626 11 2 2020-01-05
## 4627 421 15 2020-01-05
## 4628 32 2 2020-01-05
## 4629 20 2 2020-01-05
## 4630 4 1 2020-01-05
## 4631 4 1 2020-01-05
## 4632 4 0 2020-01-05
## 4633 301 11 2020-01-05
## 4634 329 7 2020-01-05
## 4635 7 0 2020-01-05
## 4636 48 0 2020-01-05
## 4637 219 9 2020-01-05
## 4638 39 2 2020-01-05
## 4639 614 86 2020-01-05
## 4640 41 0 2020-01-05
## 4641 44 5 2020-01-05
## 4642 5 0 2020-01-05
## 4643 6 5 2020-01-05
## 4644 15 3 2020-01-05
## 4645 40 3 2020-01-05
## 4646 12 0 2020-01-05
## 4647 0 0 2020-01-05
## 4648 78 2 2020-01-05
## 4649 22 6 2020-01-05
## 4650 5 1 2020-01-05
## 4651 30 0 2020-01-05
## 4652 25 5 2020-01-05
## 4653 6 0 2020-01-05
## 4654 143 16 2020-01-05
## 4655 2 0 2020-01-05
## 4656 0 0 2020-01-05
## 4657 75 2 2020-01-05
## 4658 6 0 2020-01-05
## 4659 12 1 2020-01-04
## 4660 51 3 2020-01-04
## 4661 0 0 2020-01-04
## 4662 2 1 2020-01-04
## 4663 1 0 2020-01-04
## 4664 33 1 2020-01-04
## 4665 0 0 2020-01-04
## 4666 10 1 2020-01-04
## 4667 131 5 2020-01-04
## 4668 46 1 2020-01-04
## 4669 33 1 2020-01-04
## 4670 16 1 2020-01-04
## 4671 10 0 2020-01-04
## 4672 13 1 2020-01-04
## 4673 10 0 2020-01-04
## 4674 0 0 2020-01-04
## 4675 4 0 2020-01-04
## 4676 4 0 2020-01-04
## 4677 3 1 2020-01-04
## 4678 4 0 2020-01-04
## 4679 1 0 2020-01-04
## 4680 6 0 2020-01-04
## 4681 3 0 2020-01-04
## 4682 2 1 2020-01-04
## 4683 63 41 2020-01-04
## 4684 9 1 2020-01-04
## 4685 92 1 2020-01-04
## 4686 61 5 2020-01-04
## 4687 4 0 2020-01-04
## 4688 6 1 2020-01-04
## 4689 1 0 2020-01-04
## 4690 2 0 2020-01-04
## 4691 39 2 2020-01-04
## 4692 85 12 2020-01-04
## 4693 0 0 2020-01-04
## 4694 2 0 2020-01-04
## 4695 5 0 2020-01-04
## 4696 60 5 2020-01-04
## 4697 6 0 2020-01-04
## 4698 10 0 2020-01-04
## 4699 55 0 2020-01-04
## 4700 85 2 2020-01-04
## 4701 14 0 2020-01-04
## 4702 5 2 2020-01-04
## 4703 1 0 2020-01-04
## 4704 35 6 2020-01-04
## 4705 13 1 2020-01-04
## 4706 31 5 2020-01-04
## 4707 20 0 2020-01-04
## 4708 3 1 2020-01-04
## 4709 9 0 2020-01-04
## 4710 30 2 2020-01-04
## 4711 4 2 2020-01-04
## 4712 32 0 2020-01-04
## 4713 26 0 2020-01-04
## 4714 12 0 2020-01-04
## 4715 3 1 2020-01-04
## 4716 1 0 2020-01-04
## 4717 17 1 2020-01-04
## 4718 7 2 2020-01-04
## 4719 0 0 2020-01-04
## 4720 0 0 2020-01-04
## 4721 0 0 2020-01-04
## 4722 0 0 2020-01-04
## 4723 0 0 2020-01-04
## 4724 24 3 2020-01-04
## 4725 17 4 2020-01-04
## 4726 9 0 2020-01-04
## 4727 82 3 2020-01-04
## 4728 10 1 2020-01-04
## 4729 3 1 2020-01-04
## 4730 22 1 2020-01-04
## 4731 4 0 2020-01-04
## 4732 19 3 2020-01-04
## 4733 9 3 2020-01-04
## 4734 6 1 2020-01-04
## 4735 14 6 2020-01-04
## 4736 2 0 2020-01-04
## 4737 4 0 2020-01-04
## 4738 0 1 2020-01-04
## 4739 541 7 2020-01-04
## 4740 183 7 2020-01-04
## 4741 3 0 2020-01-04
## 4742 18 6 2020-01-04
## 4743 29 2 2020-01-04
## 4744 17 0 2020-01-04
## 4745 131 14 2020-01-04
## 4746 15 3 2020-01-04
## 4747 162 12 2020-01-04
## 4748 17 1 2020-01-04
## 4749 28 4 2020-01-04
## 4750 156 13 2020-01-04
## 4751 10 2 2020-01-04
## 4752 0 0 2020-01-04
## 4753 8 0 2020-01-04
## 4754 10 1 2020-01-04
## 4755 8 0 2020-01-04
## 4756 17 1 2020-01-04
## 4757 38 1 2020-01-04
## 4758 5 0 2020-01-04
## 4759 18 2 2020-01-04
## 4760 3 1 2020-01-04
## 4761 7 1 2020-01-04
## 4762 194 9 2020-01-04
## 4763 23 9 2020-01-04
## 4764 55 11 2020-01-04
## 4765 3 0 2020-01-04
## 4766 73 2 2020-01-04
## 4767 0 0 2020-01-04
## 4768 0 0 2020-01-04
## 4769 1 0 2020-01-04
## 4770 2 0 2020-01-04
## 4771 16 0 2020-01-04
## 4772 12 0 2020-01-04
## 4773 1 0 2020-01-04
## 4774 0 0 2020-01-04
## 4775 32 1 2020-01-04
## 4776 39 10 2020-01-04
## 4777 4 0 2020-01-04
## 4778 10 0 2020-01-04
## 4779 18 0 2020-01-04
## 4780 13 1 2020-01-04
## 4781 14 0 2020-01-04
## 4782 63 4 2020-01-04
## 4783 2 0 2020-01-04
## 4784 8 0 2020-01-04
## 4785 50 1 2020-01-04
## 4786 7 1 2020-01-04
## 4787 7 0 2020-01-04
## 4788 0 0 2020-01-04
## 4789 21 0 2020-01-04
## 4790 5 2 2020-01-04
## 4791 18 0 2020-01-04
## 4792 0 0 2020-01-04
## 4793 19 0 2020-01-04
## 4794 7 2 2020-01-04
## 4795 309 28 2020-01-04
## 4796 170 14 2020-01-04
## 4797 608 35 2020-01-04
## 4798 0 0 2020-01-04
## 4799 1 0 2020-01-04
## 4800 11 0 2020-01-04
## 4801 4 0 2020-01-04
## 4802 2 0 2020-01-04
## 4803 112 7 2020-01-04
## 4804 19 2 2020-01-04
## 4805 48 3 2020-01-04
## 4806 65 3 2020-01-04
## 4807 0 0 2020-01-04
## 4808 17 2 2020-01-04
## 4809 0 0 2020-01-04
## 4810 77 3 2020-01-04
## 4811 16 0 2020-01-04
## 4812 12 3 2020-01-04
## 4813 0 1 2020-01-04
## 4814 5 0 2020-01-04
## 4815 3 0 2020-01-04
## 4816 20 0 2020-01-04
## 4817 3 0 2020-01-04
## 4818 4 0 2020-01-04
## 4819 7 0 2020-01-04
## 4820 166 10 2020-01-04
## 4821 16 2 2020-01-04
## 4822 12 1 2020-01-04
## 4823 12 0 2020-01-04
## 4824 0 0 2020-01-04
## 4825 12 0 2020-01-04
## 4826 67 4 2020-01-04
## 4827 12 0 2020-01-04
## 4828 92 4 2020-01-04
## 4829 4 1 2020-01-04
## 4830 7 1 2020-01-04
## 4831 3 0 2020-01-04
## 4832 234 6 2020-01-04
## 4833 0 0 2020-01-04
## 4834 16 1 2020-01-04
## 4835 10 0 2020-01-04
## 4836 69 1 2020-01-04
## 4837 18 0 2020-01-04
## 4838 69 2 2020-01-04
## 4839 18 0 2020-01-04
## 4840 8 1 2020-01-04
## 4841 14 1 2020-01-04
## 4842 0 0 2020-01-04
## 4843 11 1 2020-01-04
## 4844 5 0 2020-01-04
## 4845 67 2 2020-01-04
## 4846 10 0 2020-01-04
## 4847 165 9 2020-01-04
## 4848 7 5 2020-01-04
## 4849 27 3 2020-01-04
## 4850 17 0 2020-01-04
## 4851 2 2 2020-01-04
## 4852 9 1 2020-01-04
## 4853 37 2 2020-01-04
## 4854 9 0 2020-01-04
## 4855 2 0 2020-01-04
## 4856 27 2 2020-01-04
## 4857 31 1 2020-01-04
## 4858 19 5 2020-01-04
## 4859 322 12 2020-01-04
## 4860 22 2 2020-01-05
## 4861 35 0 2020-01-05
## 4862 40 1 2020-01-05
## 4863 7 1 2020-01-05
## 4864 19 0 2020-01-05
## 4865 41 4 2020-01-05
## 4866 21 2 2020-01-05
## 4867 516 339 2020-01-05
## 4868 29 2 2020-01-05
## 4869 6 0 2020-01-05
## 4870 23 0 2020-01-05
## 4871 1 2 2020-01-05
## 4872 13 2 2020-01-05
## 4873 31 6 2020-01-05
## 4874 4 2 2020-01-05
## 4875 73 4 2020-01-05
## 4876 11 0 2020-01-05
## 4877 7 0 2020-01-05
## 4878 18 2 2020-01-05
## 4879 3 2 2020-01-05
## 4880 2 0 2020-01-05
## 4881 12 0 2020-01-05
## 4882 10 1 2020-01-05
## 4883 14 0 2020-01-05
## 4884 10 0 2020-01-05
## 4885 66 0 2020-01-05
## 4886 54 1 2020-01-05
## 4887 5 0 2020-01-05
## 4888 13 0 2020-01-05
## 4889 13 1 2020-01-05
## 4890 76 2 2020-01-05
## 4891 26 0 2020-01-05
## 4892 13 17 2020-01-05
## 4893 34 4 2020-01-05
## 4894 21 2 2020-01-05
## 4895 8 1 2020-01-05
## 4896 0 1 2020-01-05
## 4897 8 2 2020-01-05
## 4898 10 5 2020-01-05
## 4899 0 0 2020-01-05
## 4900 6 0 2020-01-05
## 4901 131 4 2020-01-05
## 4902 93 10 2020-01-05
## 4903 2 0 2020-01-05
## 4904 6 0 2020-01-05
## 4905 0 0 2020-01-05
## 4906 17 0 2020-01-05
## 4907 16 1 2020-01-05
## 4908 6 0 2020-01-05
## 4909 19 2 2020-01-05
## 4910 12 0 2020-01-05
## 4911 0 0 2020-01-05
## 4912 20 1 2020-01-05
## 4913 44 5 2020-01-05
## 4914 92 17 2020-01-05
## 4915 9 0 2020-01-05
## 4916 15 0 2020-01-05
## 4917 0 0 2020-01-05
## 4918 3 1 2020-01-05
## 4919 4 0 2020-01-05
## 4920 214 20 2020-01-05
## 4921 49 2 2020-01-05
## 4922 0 0 2020-01-05
## 4923 0 0 2020-01-05
## 4924 81 17 2020-01-05
## 4925 375 168 2020-01-05
## 4926 22 0 2020-01-05
## 4927 24 3 2020-01-05
## 4928 22 1 2020-01-05
## 4929 156 153 2020-01-05
## 4930 14 6 2020-01-05
## 4931 8 0 2020-01-05
## 4932 6 1 2020-01-05
## 4933 7 0 2020-01-05
## 4934 19 0 2020-01-05
## 4935 11 2 2020-01-05
## 4936 6 2 2020-01-05
## 4937 1 0 2020-01-05
## 4938 7 4 2020-01-05
## 4939 22 1 2020-01-05
## 4940 75 7 2020-01-05
## 4941 6 1 2020-01-05
## 4942 8 0 2020-01-05
## 4943 7 0 2020-01-05
## 4944 100 4 2020-01-05
## 4945 3 0 2020-01-05
## 4946 11 0 2020-01-05
## 4947 118 11 2020-01-05
## 4948 0 0 2020-01-05
## 4949 3 1 2020-01-05
## 4950 0 0 2020-01-05
## 4951 143 12 2020-01-05
## 4952 33 2 2020-01-05
## 4953 19 0 2020-01-05
## 4954 12 0 2020-01-05
## 4955 1 0 2020-01-05
## 4956 39 1 2020-01-05
## 4957 4 1 2020-01-05
## 4958 22 0 2020-01-05
## 4959 0 0 2020-01-05
## 4960 7 0 2020-01-05
## 4961 16 1 2020-01-05
## 4962 11 1 2020-01-05
## 4963 9 3 2020-01-05
## 4964 0 0 2020-01-05
## 4965 12 0 2020-01-05
## 4966 1384 183 2020-01-05
## 4967 27 3 2020-01-05
## 4968 3 0 2020-01-05
## 4969 7 2 2020-01-05
## 4970 1 0 2020-01-05
## 4971 5 0 2020-01-05
## 4972 75 2 2020-01-05
## 4973 41 3 2020-01-05
## 4974 8 0 2020-01-05
## 4975 17 0 2020-01-05
## 4976 1 0 2020-01-05
## 4977 0 0 2020-01-05
## 4978 32 1 2020-01-05
## 4979 4 0 2020-01-05
## 4980 455 427 2020-01-05
## 4981 2 0 2020-01-05
## 4982 0 0 2020-01-05
## 4983 177 51 2020-01-05
## 4984 27 1 2020-01-05
## 4985 2 0 2020-01-05
## 4986 4 1 2020-01-05
## 4987 12 1 2020-01-05
## 4988 12 2 2020-01-05
## 4989 14 0 2020-01-05
## 4990 2 0 2020-01-05
## 4991 17 5 2020-01-05
## 4992 7 0 2020-01-05
## 4993 11 0 2020-01-05
## 4994 22 3 2020-01-05
## 4995 36 4 2020-01-05
## 4996 17 0 2020-01-05
## 4997 13 0 2020-01-05
## 4998 6 0 2020-01-05
## 4999 3 0 2020-01-05
## 5000 12 0 2020-01-05
## 5001 41 0 2020-01-05
## 5002 33 9 2020-01-05
## 5003 51 7 2020-01-05
## 5004 122 8 2020-01-05
## 5005 30 1 2020-01-05
## 5006 2 0 2020-01-05
## 5007 48 1 2020-01-05
## 5008 25 0 2020-01-05
## 5009 15 1 2020-01-05
## 5010 43 13 2020-01-05
## 5011 5 1 2020-01-05
## 5012 0 0 2020-01-05
## 5013 13 3 2020-01-05
## 5014 2 1 2020-01-05
## 5015 119 6 2020-01-05
## 5016 7 0 2020-01-05
## 5017 24 2 2020-01-05
## 5018 5 1 2020-01-05
## 5019 0 0 2020-01-05
## 5020 1 0 2020-01-05
## 5021 23 2 2020-01-05
## 5022 14 0 2020-01-05
## 5023 3 1 2020-01-05
## 5024 7 0 2020-01-05
## 5025 38 1 2020-01-05
## 5026 23 2 2020-01-05
## 5027 23 1 2020-01-05
## 5028 84 2 2020-01-05
## 5029 6 0 2020-01-05
## 5030 37 3 2020-01-05
## 5031 3 0 2020-01-05
## 5032 1 0 2020-01-05
## 5033 10 0 2020-01-05
## 5034 26 0 2020-01-05
## 5035 4 0 2020-01-05
## 5036 1 1 2020-01-05
## 5037 46 1 2020-01-05
## 5038 71 10 2020-01-05
## 5039 14 1 2020-01-05
## 5040 1 0 2020-01-05
## 5041 3 0 2020-01-05
## 5042 7 0 2020-01-05
## 5043 281 247 2020-01-05
## 5044 14 0 2020-01-05
## 5045 38 3 2020-01-05
## 5046 64 1 2020-01-05
## 5047 0 0 2020-01-05
## 5048 2 0 2020-01-05
## 5049 10 2 2020-01-05
## 5050 8 0 2020-01-05
## 5051 22 4 2020-01-05
## 5052 17 0 2020-01-05
## 5053 37 1 2020-01-05
## 5054 15 0 2020-01-05
## 5055 3 0 2020-01-05
## 5056 2 0 2020-01-05
## 5057 0 0 2020-01-05
## 5058 63 8 2020-01-05
## 5059 54 2 2020-01-05
## 5060 4 0 2020-01-05
## 5061 2 0 2020-01-05
## 5062 59286 28744 2020-01-05
## 5063 5 0 2020-01-05
## 5064 0 1 2020-01-05
## 5065 10 0 2020-01-05
## 5066 38 1 2020-01-05
## 5067 9 2 2020-01-05
## 5068 2 0 2020-01-05
## 5069 2 0 2020-01-05
## 5070 5 1 2020-01-05
## 5071 1 0 2020-01-05
## 5072 9 1 2020-01-05
## 5073 0 0 2020-01-05
## 5074 32 3 2020-01-05
## 5075 28 1 2020-01-05
## 5076 9 0 2020-01-05
## 5077 8 1 2020-01-05
## 5078 17 0 2020-01-05
## 5079 1 1 2020-01-05
## 5080 65 10 2020-01-05
## 5081 0 0 2020-01-05
## 5082 10 2 2020-01-05
## 5083 0 0 2020-01-05
## 5084 135 6 2020-01-05
## 5085 25 1 2020-01-05
## 5086 0 1 2020-01-05
## 5087 101 3 2020-01-05
## 5088 0 0 2020-01-05
## 5089 4 0 2020-01-05
## 5090 7 1 2020-01-05
## 5091 9 0 2020-01-05
## 5092 0 0 2020-01-05
## 5093 0 0 2020-01-05
## 5094 8 0 2020-01-05
## 5095 50 7 2020-01-05
## 5096 4 0 2020-01-05
## 5097 13 1 2020-01-05
## 5098 2 1 2020-01-05
## 5099 20 2 2020-01-05
## 5100 6 0 2020-01-05
## 5101 17 2 2020-01-05
## 5102 55 3 2020-01-05
## 5103 12 1 2020-01-05
## 5104 12 1 2020-01-05
## 5105 22 1 2020-01-05
## 5106 2 0 2020-01-05
## 5107 5 2 2020-01-05
## 5108 99 5 2020-01-05
## 5109 8 2 2020-01-05
## 5110 0 1 2020-01-05
## 5111 7 0 2020-01-05
## 5112 17 7 2020-01-05
## 5113 3 0 2020-01-05
## 5114 6 1 2020-01-05
## 5115 25 2 2020-01-05
## 5116 12 3 2020-01-05
## 5117 2 0 2020-01-05
## 5118 3 3 2020-01-05
## 5119 25 8 2020-01-05
## 5120 3 0 2020-01-05
## 5121 1 0 2020-01-05
## 5122 0 0 2020-01-05
## 5123 9 0 2020-01-05
## 5124 1 0 2020-01-05
## 5125 17 0 2020-01-05
## 5126 11 1 2020-01-05
## 5127 18 0 2020-01-05
## 5128 17 0 2020-01-05
## 5129 54 6 2020-01-05
## 5130 6 0 2020-01-05
## 5131 226 119 2020-01-05
## 5132 9 0 2020-01-05
## 5133 4 0 2020-01-05
## 5134 19 0 2020-01-05
## 5135 0 0 2020-01-05
## 5136 73 1 2020-01-05
## 5137 13 1 2020-01-05
## 5138 14 0 2020-01-05
## 5139 4 0 2020-01-05
## 5140 2 0 2020-01-05
## 5141 15 1 2020-01-05
## 5142 20 3 2020-01-05
## 5143 1 0 2020-01-05
## 5144 1 0 2020-01-05
## 5145 2 0 2020-01-05
## 5146 107 2 2020-01-05
## 5147 15 1 2020-01-05
## 5148 0 0 2020-01-05
## 5149 0 0 2020-01-05
## 5150 3 0 2020-01-05
## 5151 2 0 2020-01-05
## 5152 24 2 2020-01-05
## 5153 18 1 2020-01-05
## 5154 0 0 2020-01-05
## 5155 0 0 2020-01-05
## 5156 0 0 2020-01-05
## 5157 27 0 2020-01-05
## 5158 0 0 2020-01-05
## 5159 4 0 2020-01-05
## 5160 7 0 2020-01-05
## 5161 23 2 2020-01-05
## 5162 130 17 2020-01-05
## 5163 3 0 2020-01-05
## 5164 9 0 2020-01-05
## 5165 0 0 2020-01-05
## 5166 10 4 2020-01-05
## 5167 15 0 2020-01-05
## 5168 13 0 2020-01-05
## 5169 0 0 2020-01-05
## 5170 20 1 2020-01-05
## 5171 8 0 2020-01-05
## 5172 1 0 2020-01-05
## 5173 76 9 2020-01-05
## 5174 83 15 2020-01-05
## 5175 48 3 2020-01-05
## 5176 6 1 2020-01-05
## 5177 6 0 2020-01-05
## 5178 15 0 2020-01-05
## 5179 43 1 2020-01-05
## 5180 20 2 2020-01-05
## 5181 3 0 2020-01-05
## 5182 77 6 2020-01-05
## 5183 122 16 2020-01-05
## 5184 0 0 2020-01-05
## 5185 0 0 2020-01-05
## 5186 146 11 2020-01-05
## 5187 4 0 2020-01-05
## 5188 19 0 2020-01-05
## 5189 25 1 2020-01-05
## 5190 39 1 2020-01-05
## 5191 23 1 2020-01-05
## 5192 107 4 2020-01-05
## 5193 0 0 2020-01-05
## 5194 1 0 2020-01-05
## 5195 22 1 2020-01-05
## 5196 5 0 2020-01-05
## 5197 16 1 2020-01-05
## 5198 0 0 2020-01-05
## 5199 5 0 2020-01-05
## 5200 12 0 2020-01-05
## 5201 25 1 2020-01-05
## 5202 66 2 2020-01-05
## 5203 9 0 2020-01-05
## 5204 2 1 2020-01-05
## 5205 0 0 2020-01-05
## 5206 27 2 2020-01-05
## 5207 0 0 2020-01-05
## 5208 2 0 2020-01-05
## 5209 7 1 2020-01-05
## 5210 0 0 2020-01-05
## 5211 227 20 2020-01-05
## 5212 6 0 2020-01-05
## 5213 25 6 2020-01-05
## 5214 1 0 2020-01-05
## 5215 70 2 2020-01-05
## 5216 34 1 2020-01-05
## 5217 55 16 2020-01-05
## 5218 212 15 2020-01-05
## 5219 6 0 2020-01-05
## 5220 0 0 2020-01-05
## 5221 37 2 2020-01-05
## 5222 7 0 2020-01-05
## 5223 4 0 2020-01-05
## 5224 19 0 2020-01-05
## 5225 25 2 2020-01-05
## 5226 11 0 2020-01-05
## 5227 13 0 2020-01-05
## 5228 64 5 2020-01-05
## 5229 9 0 2020-01-05
## 5230 1 0 2020-01-05
## 5231 2 0 2020-01-05
## 5232 31 1 2020-01-05
## 5233 11 0 2020-01-05
## 5234 15 14 2020-01-05
## 5235 0 0 2020-01-05
## 5236 31 8 2020-01-05
## 5237 65 6 2020-01-05
## 5238 0 0 2020-01-05
## 5239 69 214 2020-01-05
## 5240 3 0 2020-01-05
## 5241 43 1 2020-01-05
## 5242 32 1 2020-01-05
## 5243 16 2 2020-01-05
## 5244 1 0 2020-01-05
## 5245 2 0 2020-01-05
## 5246 15 0 2020-01-05
## 5247 6 0 2020-01-05
## 5248 34 6 2020-01-05
## 5249 13 0 2020-01-05
## 5250 33 8 2020-01-05
## 5251 25 0 2020-01-05
## 5252 15 2 2020-01-05
## 5253 102 9 2020-01-05
## 5254 12 0 2020-01-05
## 5255 0 0 2020-01-05
## 5256 58 4 2020-01-05
## 5257 0 0 2020-01-05
## 5258 0 0 2020-01-05
## 5259 0 0 2020-01-05
## 5260 86 2 2020-01-05
## 5261 121 10 2020-01-05
## 5262 0 0 2020-01-05
## 5263 49 20 2020-01-05
## 5264 0 0 2020-01-05
## 5265 55 25 2020-01-05
## 5266 75 4 2020-01-05
## 5267 47 10 2020-01-05
## 5268 128 6 2020-01-05
## 5269 4 0 2020-01-05
## 5270 44 4 2020-01-05
## 5271 0 0 2020-01-05
## 5272 3 0 2020-01-05
## 5273 16 0 2020-01-05
## 5274 949 90 2020-01-05
## 5275 1 0 2020-01-05
## 5276 0 0 2020-01-05
## 5277 33 4 2020-01-05
## 5278 3 0 2020-01-05
## 5279 5 1 2020-01-05
## 5280 15 0 2020-01-05
## 5281 0 0 2020-01-05
## 5282 407 30 2020-01-05
## 5283 0 0 2020-01-05
## 5284 4 0 2020-01-05
## 5285 0 0 2020-01-05
## 5286 6 4 2020-01-05
## 5287 5 0 2020-01-05
## 5288 71 5 2020-01-05
## 5289 0 0 2020-01-05
## 5290 4 0 2020-01-05
## 5291 32 2 2020-01-05
## 5292 132 6 2020-01-05
## 5293 4 0 2020-01-05
## 5294 2 0 2020-01-05
## 5295 10 3 2020-01-05
## 5296 0 0 2020-01-05
## 5297 7 0 2020-01-05
## 5298 12 0 2020-01-05
## 5299 2 2 2020-01-05
## 5300 29 8 2020-01-05
## 5301 3 0 2020-01-05
## 5302 25 1 2020-01-05
## 5303 19 1 2020-01-05
## 5304 2 0 2020-01-05
## 5305 64 3 2020-01-05
## 5306 0 0 2020-01-05
## 5307 85 4 2020-01-05
## 5308 2 1 2020-01-05
## 5309 0 0 2020-01-05
## 5310 6 0 2020-01-05
## 5311 67 6 2020-01-05
## 5312 0 0 2020-01-05
## 5313 0 0 2020-01-05
## 5314 1 0 2020-01-05
## 5315 12 2 2020-01-05
## 5316 60 27 2020-01-05
## 5317 0 0 2020-01-05
## 5318 5 1 2020-01-05
## 5319 11 1 2020-01-05
## 5320 68 21 2020-01-05
## 5321 10 1 2020-01-05
## 5322 15 0 2020-01-05
## 5323 0 0 2020-01-05
## 5324 8 1 2020-01-05
## 5325 5 0 2020-01-05
## 5326 23 1 2020-01-05
## 5327 0 0 2020-01-05
## 5328 95 0 2020-01-05
## 5329 35 2 2020-01-05
## 5330 33 1 2020-01-05
## 5331 0 0 2020-01-05
## 5332 49 6 2020-01-05
## 5333 252 33 2020-01-05
## 5334 3 0 2020-01-05
## 5335 66 15 2020-01-05
## 5336 1 0 2020-01-05
## 5337 1 0 2020-01-05
## 5338 34 8 2020-01-05
## 5339 71 1 2020-01-05
## 5340 0 0 2020-01-05
## 5341 23 1 2020-01-05
## 5342 7 0 2020-01-05
## 5343 1 0 2020-01-05
## 5344 21 3 2020-01-05
## 5345 11 1 2020-01-05
## 5346 5 0 2020-01-05
## 5347 0 1 2020-01-05
## 5348 25 2 2020-01-05
## 5349 17 0 2020-01-05
## 5350 23 2 2020-01-05
## 5351 1 0 2020-01-05
## 5352 3 3 2020-01-05
## 5353 38 1 2020-01-05
## 5354 0 0 2020-01-05
## 5355 7 0 2020-01-05
## 5356 0 0 2020-01-05
## 5357 44 12 2020-01-05
## 5358 4 1 2020-01-05
## 5359 8 1 2020-01-05
## 5360 0 0 2020-01-06
## 5361 39 2 2020-01-06
## 5362 0 0 2020-01-06
## 5363 21 4 2020-01-06
## 5364 0 0 2020-01-06
## 5365 0 0 2020-01-06
## 5366 12 0 2020-01-06
## 5367 38 4 2020-01-06
## 5368 42 1 2020-01-06
## 5369 0 0 2020-01-06
## 5370 7 1 2020-01-06
## 5371 802 13 2020-01-06
## 5372 0 0 2020-01-06
## 5373 0 0 2020-01-06
## 5374 14 0 2020-01-06
## 5375 5 0 2020-01-06
## 5376 0 0 2020-01-06
## 5377 11 0 2020-01-06
## 5378 58 4 2020-01-06
## 5379 55 4 2020-01-06
## 5380 1 0 2020-01-06
## 5381 14 3 2020-01-06
## 5382 22 4 2020-01-06
## 5383 0 0 2020-01-06
## 5384 9 0 2020-01-06
## 5385 0 0 2020-01-06
## 5386 3 0 2020-01-06
## 5387 12 1 2020-01-06
## 5388 0 0 2020-01-06
## 5389 3 0 2020-01-06
## 5390 9 1 2020-01-06
## 5391 101 4 2020-01-06
## 5392 77 9 2020-01-06
## 5393 0 0 2020-01-06
## 5394 0 0 2020-01-06
## 5395 13 4 2020-01-06
## 5396 2 0 2020-01-06
## 5397 48 0 2020-01-06
## 5398 0 0 2020-01-06
## 5399 13 2 2020-01-06
## 5400 33 0 2020-01-06
## 5401 0 0 2020-01-06
## 5402 3 0 2020-01-06
## 5403 17 6 2020-01-06
## 5404 27 3 2020-01-06
## 5405 0 0 2020-01-06
## 5406 10 0 2020-01-06
## 5407 0 0 2020-01-06
## 5408 0 0 2020-01-06
## 5409 7 0 2020-01-06
## 5410 34 0 2020-01-06
## 5411 76 0 2020-01-06
## 5412 9 1 2020-01-06
## 5413 13 0 2020-01-06
## 5414 392 18 2020-01-06
## 5415 4 0 2020-01-06
## 5416 0 0 2020-01-06
## 5417 5 0 2020-01-06
## 5418 0 0 2020-01-06
## 5419 0 0 2020-01-06
## 5420 34 4 2020-01-06
## 5421 13 1 2020-01-06
## 5422 5 1 2020-01-06
## 5423 740 2 2020-01-06
## 5424 27 1 2020-01-06
## 5425 25 3 2020-01-06
## 5426 37 1 2020-01-06
## 5427 26 3 2020-01-06
## 5428 40 1 2020-01-06
## 5429 24 3 2020-01-06
## 5430 20 0 2020-01-06
## 5431 0 1 2020-01-06
## 5432 0 0 2020-01-06
## 5433 0 0 2020-01-06
## 5434 0 0 2020-01-06
## 5435 3 0 2020-01-06
## 5436 22 5 2020-01-06
## 5437 7 0 2020-01-06
## 5438 0 0 2020-01-06
## 5439 7 0 2020-01-06
## 5440 127 2 2020-01-06
## 5441 5 0 2020-01-06
## 5442 11 1 2020-01-06
## 5443 34 18 2020-01-06
## 5444 91 4 2020-01-06
## 5445 15 1 2020-01-06
## 5446 0 0 2020-01-06
## 5447 0 0 2020-01-06
## 5448 3 0 2020-01-06
## 5449 0 0 2020-01-06
## 5450 0 0 2020-01-06
## 5451 9 0 2020-01-06
## 5452 0 0 2020-01-06
## 5453 25 5 2020-01-06
## 5454 0 0 2020-01-06
## 5455 5 2 2020-01-06
## 5456 4 0 2020-01-06
## 5457 2 0 2020-01-06
## 5458 0 0 2020-01-06
## 5459 19 0 2020-01-06
## 5460 2456 47 2020-01-06
## 5461 42 0 2020-01-06
## 5462 52 1 2020-01-06
## 5463 2 0 2020-01-06
## 5464 0 0 2020-01-06
## 5465 0 0 2020-01-06
## 5466 10 0 2020-01-06
## 5467 4 2 2020-01-06
## 5468 0 0 2020-01-06
## 5469 0 2 2020-01-06
## 5470 0 0 2020-01-06
## 5471 0 0 2020-01-06
## 5472 33 0 2020-01-06
## 5473 37 0 2020-01-06
## 5474 0 0 2020-01-06
## 5475 9 1 2020-01-06
## 5476 17 1 2020-01-06
## 5477 13 0 2020-01-06
## 5478 38 4 2020-01-06
## 5479 9 1 2020-01-06
## 5480 32 4 2020-01-06
## 5481 1 2 2020-01-06
## 5482 9 2 2020-01-06
## 5483 1 1 2020-01-06
## 5484 58 8 2020-01-06
## 5485 0 0 2020-01-06
## 5486 0 0 2020-01-06
## 5487 0 0 2020-01-06
## 5488 2 0 2020-01-06
## 5489 0 0 2020-01-06
## 5490 14 0 2020-01-06
## 5491 41 3 2020-01-06
## 5492 35 2 2020-01-06
## 5493 4 0 2020-01-06
## 5494 36 0 2020-01-06
## 5495 1 1 2020-01-06
## 5496 53 3 2020-01-06
## 5497 18 1 2020-01-06
## 5498 2 0 2020-01-06
## 5499 9 1 2020-01-06
## 5500 0 0 2020-01-06
## 5501 28 1 2020-01-06
## 5502 15 0 2020-01-06
## 5503 4 0 2020-01-06
## 5504 9 1 2020-01-06
## 5505 297 1 2020-01-06
## 5506 0 0 2020-01-06
## 5507 9 0 2020-01-06
## 5508 0 0 2020-01-06
## 5509 0 0 2020-01-06
## 5510 0 0 2020-01-06
## 5511 0 0 2020-01-06
## 5512 7 1 2020-01-06
## 5513 19 1 2020-01-06
## 5514 6 0 2020-01-06
## 5515 26 2 2020-01-06
## 5516 0 0 2020-01-06
## 5517 12 2 2020-01-06
## 5518 10 0 2020-01-06
## 5519 0 0 2020-01-06
## 5520 15 15 2020-01-06
## 5521 1 0 2020-01-06
## 5522 31 4 2020-01-06
## 5523 13 0 2020-01-06
## 5524 11 7 2020-01-06
## 5525 67 4 2020-01-06
## 5526 4 0 2020-01-06
## 5527 5 2 2020-01-06
## 5528 13 2 2020-01-06
## 5529 12 4 2020-01-06
## 5530 8 1 2020-01-06
## 5531 7 0 2020-01-06
## 5532 2 1 2020-01-06
## 5533 0 0 2020-01-06
## 5534 0 0 2020-01-06
## 5535 34 9 2020-01-06
## 5536 10 0 2020-01-06
## 5537 43 1 2020-01-06
## 5538 4 0 2020-01-06
## 5539 29 1 2020-01-06
## 5540 4 1 2020-01-06
## 5541 0 0 2020-01-06
## 5542 17 1 2020-01-06
## 5543 2 0 2020-01-06
## 5544 11 0 2020-01-06
## 5545 41 3 2020-01-06
## 5546 5 0 2020-01-06
## 5547 2 0 2020-01-06
## 5548 15 2 2020-01-06
## 5549 0 0 2020-01-06
## 5550 17 1 2020-01-06
## 5551 0 0 2020-01-06
## 5552 0 0 2020-01-06
## 5553 14 0 2020-01-06
## 5554 3 0 2020-01-06
## 5555 19 0 2020-01-06
## 5556 13 1 2020-01-06
## 5557 38 3 2020-01-06
## 5558 0 0 2020-01-06
## 5559 2 1 2020-01-06
## 5560 2 0 2020-01-06
## 5561 11 1 2020-01-06
## 5562 5 0 2020-01-06
## 5563 6 0 2020-01-06
## 5564 9 0 2020-01-06
## 5565 75 16 2020-01-06
## 5566 0 0 2020-01-06
## 5567 1 0 2020-01-06
## 5568 12 2 2020-01-06
## 5569 7 0 2020-01-06
## 5570 22 0 2020-01-06
## 5571 183 14 2020-01-06
## 5572 21 0 2020-01-06
## 5573 0 0 2020-01-06
## 5574 15 4 2020-01-06
## 5575 2 0 2020-01-06
## 5576 163 2 2020-01-06
## 5577 66 9 2020-01-06
## 5578 0 0 2020-01-06
## 5579 5 0 2020-01-06
## 5580 11 0 2020-01-06
## 5581 50 3 2020-01-06
## 5582 37 4 2020-01-06
## 5583 1441 39 2020-01-06
## 5584 27 2 2020-01-06
## 5585 19 1 2020-01-06
## 5586 12 2 2020-01-06
## 5587 22 3 2020-01-06
## 5588 1 0 2020-01-06
## 5589 16 0 2020-01-06
## 5590 13 1 2020-01-06
## 5591 71 2 2020-01-06
## 5592 2 0 2020-01-06
## 5593 17 3 2020-01-06
## 5594 0 0 2020-01-06
## 5595 26 1 2020-01-06
## 5596 1 0 2020-01-06
## 5597 4 0 2020-01-06
## 5598 23 0 2020-01-06
## 5599 10 0 2020-01-06
## 5600 2 1 2020-01-06
## 5601 17 0 2020-01-06
## 5602 47 3 2020-01-06
## 5603 0 0 2020-01-06
## 5604 2 0 2020-01-06
## 5605 42 2 2020-01-06
## 5606 3 0 2020-01-06
## 5607 19 2 2020-01-06
## 5608 1 0 2020-01-06
## 5609 6 0 2020-01-06
## 5610 3 0 2020-01-06
## 5611 19 0 2020-01-06
## 5612 0 0 2020-01-06
## 5613 0 0 2020-01-06
## 5614 0 0 2020-01-06
## 5615 0 0 2020-01-06
## 5616 0 0 2020-01-06
## 5617 0 0 2020-01-06
## 5618 25 7 2020-01-06
## 5619 0 0 2020-01-06
## 5620 1 0 2020-01-06
## 5621 11 2 2020-01-06
## 5622 37 1 2020-01-06
## 5623 0 0 2020-01-06
## 5624 5 0 2020-01-06
## 5625 13 3 2020-01-06
## 5626 1 0 2020-01-06
## 5627 1 0 2020-01-06
## 5628 86 3 2020-01-06
## 5629 11 0 2020-01-06
## 5630 12 3 2020-01-06
## 5631 87 8 2020-01-06
## 5632 1 0 2020-01-06
## 5633 28 1 2020-01-06
## 5634 12 4 2020-01-06
## 5635 0 0 2020-01-06
## 5636 0 0 2020-01-06
## 5637 0 0 2020-01-06
## 5638 2 0 2020-01-06
## 5639 0 0 2020-01-06
## 5640 0 0 2020-01-06
## 5641 36 1 2020-01-06
## 5642 0 0 2020-01-06
## 5643 0 0 2020-01-06
## 5644 0 0 2020-01-06
## 5645 32 4 2020-01-06
## 5646 18 3 2020-01-06
## 5647 0 0 2020-01-06
## 5648 30 1 2020-01-06
## 5649 2 0 2020-01-06
## 5650 4 0 2020-01-06
## 5651 4 0 2020-01-06
## 5652 1 0 2020-01-06
## 5653 383 7 2020-01-06
## 5654 15 0 2020-01-06
## 5655 12 0 2020-01-06
## 5656 2 0 2020-01-06
## 5657 3 0 2020-01-06
## 5658 18 1 2020-01-06
## 5659 0 0 2020-01-06
## 5660 1 0 2020-01-06
## 5661 2 0 2020-01-06
## 5662 40 4 2020-01-06
## 5663 0 0 2020-01-06
## 5664 63 1 2020-01-06
## 5665 45 3 2020-01-06
## 5666 2 1 2020-01-06
## 5667 8 1 2020-01-06
## 5668 18 3 2020-01-06
## 5669 6 0 2020-01-06
## 5670 124 4 2020-01-06
## 5671 1 0 2020-01-06
## 5672 13 2 2020-01-06
## 5673 373 8 2020-01-06
## 5674 0 1 2020-01-06
## 5675 2 1 2020-01-06
## 5676 39 3 2020-01-06
## 5677 0 0 2020-01-06
## 5678 0 0 2020-01-06
## 5679 213 6 2020-01-06
## 5680 0 0 2020-01-06
## 5681 71 5 2020-01-06
## 5682 12 1 2020-01-06
## 5683 63 5 2020-01-06
## 5684 2 0 2020-01-06
## 5685 52 0 2020-01-06
## 5686 21 1 2020-01-06
## 5687 2 1 2020-01-06
## 5688 12 0 2020-01-06
## 5689 10 1 2020-01-06
## 5690 3 0 2020-01-06
## 5691 4 0 2020-01-06
## 5692 4 0 2020-01-06
## 5693 2 0 2020-01-06
## 5694 26 5 2020-01-06
## 5695 3 0 2020-01-06
## 5696 138 17 2020-01-06
## 5697 7 0 2020-01-06
## 5698 26 5 2020-01-06
## 5699 15 11 2020-01-06
## 5700 99 42 2020-01-06
## 5701 11 0 2020-01-06
## 5702 18 0 2020-01-06
## 5703 35 1 2020-01-06
## 5704 3 1 2020-01-06
## 5705 25 7 2020-01-06
## 5706 4 0 2020-01-06
## 5707 11 3 2020-01-06
## 5708 4 0 2020-01-06
## 5709 9 0 2020-01-06
## 5710 9 0 2020-01-06
## 5711 11 0 2020-01-06
## 5712 10 1 2020-01-06
## 5713 20 1 2020-01-06
## 5714 65 3 2020-01-06
## 5715 34 2 2020-01-06
## 5716 3 0 2020-01-05
## 5717 37 2 2020-01-05
## 5718 5 0 2020-01-05
## 5719 19 3 2020-01-05
## 5720 14 1 2020-01-05
## 5721 8 0 2020-01-05
## 5722 6 0 2020-01-05
## 5723 73 7 2020-01-05
## 5724 2 0 2020-01-05
## 5725 15 0 2020-01-05
## 5726 493 12 2020-01-05
## 5727 19 0 2020-01-05
## 5728 4 0 2020-01-05
## 5729 61 4 2020-01-05
## 5730 2 1 2020-01-05
## 5731 12 1 2020-01-05
## 5732 12 0 2020-01-05
## 5733 4 1 2020-01-05
## 5734 80 8 2020-01-05
## 5735 12 3 2020-01-05
## 5736 99 10 2020-01-05
## 5737 28 2 2020-01-05
## 5738 9 2 2020-01-05
## 5739 0 0 2020-01-05
## 5740 13 0 2020-01-05
## 5741 1 0 2020-01-05
## 5742 35 0 2020-01-05
## 5743 46 3 2020-01-05
## 5744 5 0 2020-01-05
## 5745 68 3 2020-01-05
## 5746 5 0 2020-01-05
## 5747 19 2 2020-01-05
## 5748 11 1 2020-01-05
## 5749 70 1 2020-01-05
## 5750 15 1 2020-01-05
## 5751 55 6 2020-01-05
## 5752 0 0 2020-01-05
## 5753 54 0 2020-01-05
## 5754 84 9 2020-01-05
## 5755 18 0 2020-01-05
## 5756 1 0 2020-01-05
## 5757 2 0 2020-01-05
## 5758 27 0 2020-01-05
## 5759 29 1 2020-01-05
## 5760 9 1 2020-01-05
## 5761 0 0 2020-01-05
## 5762 19 5 2020-01-05
## 5763 6 0 2020-01-05
## 5764 4 0 2020-01-05
## 5765 8 1 2020-01-05
## 5766 9 1 2020-01-05
## 5767 9 2 2020-01-05
## 5768 6 1 2020-01-05
## 5769 4 0 2020-01-05
## 5770 450 37 2020-01-05
## 5771 0 1 2020-01-05
## 5772 18 4 2020-01-05
## 5773 7 2 2020-01-05
## 5774 25 0 2020-01-05
## 5775 44 4 2020-01-05
## 5776 96 16 2020-01-05
## 5777 4 0 2020-01-05
## 5778 11 0 2020-01-05
## 5779 9 0 2020-01-05
## 5780 22 0 2020-01-05
## 5781 381 10 2020-01-05
## 5782 8 0 2020-01-05
## 5783 3 0 2020-01-05
## 5784 4 0 2020-01-05
## 5785 97 11 2020-01-05
## 5786 10 0 2020-01-05
## 5787 24 14 2020-01-05
## 5788 55 1 2020-01-05
## 5789 2 0 2020-01-05
## 5790 36 2 2020-01-05
## 5791 36 6 2020-01-05
## 5792 80 5 2020-01-05
## 5793 3 0 2020-01-05
## 5794 24 8 2020-01-05
## 5795 0 0 2020-01-05
## 5796 9 3 2020-01-05
## 5797 10 1 2020-01-05
## 5798 82 4 2020-01-05
## 5799 31 2 2020-01-05
## 5800 14 4 2020-01-05
## 5801 47 0 2020-01-05
## 5802 8 1 2020-01-05
## 5803 0 0 2020-01-05
## 5804 5 0 2020-01-05
## 5805 6 0 2020-01-05
## 5806 4 0 2020-01-05
## 5807 31 0 2020-01-05
## 5808 6 0 2020-01-05
## 5809 29 6 2020-01-05
## 5810 1 0 2020-01-05
## 5811 22 2 2020-01-05
## 5812 15 1 2020-01-05
## 5813 13 5 2020-01-05
## 5814 12 0 2020-01-05
## 5815 28 3 2020-01-05
## 5816 13 1 2020-01-05
## 5817 37 1 2020-01-05
## 5818 108 6 2020-01-05
## 5819 1 1 2020-01-05
## 5820 13 1 2020-01-05
## 5821 39 5 2020-01-05
## 5822 55 8 2020-01-05
## 5823 13 0 2020-01-05
## 5824 5 0 2020-01-05
## 5825 3 2 2020-01-05
## 5826 3 0 2020-01-05
## 5827 53 1 2020-01-05
## 5828 1 0 2020-01-05
## 5829 26 0 2020-01-05
## 5830 16 1 2020-01-05
## 5831 9 2 2020-01-05
## 5832 110 4 2020-01-05
## 5833 209 6 2020-01-05
## 5834 14 0 2020-01-05
## 5835 2 0 2020-01-05
## 5836 6 1 2020-01-05
## 5837 42 0 2020-01-05
## 5838 43 0 2020-01-05
## 5839 139 38 2020-01-05
## 5840 10 0 2020-01-05
## 5841 0 0 2020-01-05
## 5842 19 3 2020-01-05
## 5843 9 0 2020-01-05
## 5844 0 0 2020-01-05
## 5845 26 1 2020-01-05
## 5846 31 3 2020-01-05
## 5847 3 2 2020-01-05
## 5848 10 1 2020-01-05
## 5849 22 1 2020-01-05
## 5850 3 1 2020-01-05
## 5851 1 1 2020-01-05
## 5852 12 3 2020-01-05
## 5853 222 8 2020-01-05
## 5854 24 5 2020-01-05
## 5855 5 4 2020-01-05
## 5856 31 1 2020-01-05
## 5857 6 1 2020-01-05
## 5858 9 0 2020-01-05
## 5859 8 1 2020-01-05
## 5860 12 1 2020-01-06
## 5861 18 2 2020-01-06
## 5862 4 1 2020-01-06
## 5863 45 1 2020-01-06
## 5864 8 0 2020-01-06
## 5865 0 0 2020-01-06
## 5866 0 0 2020-01-06
## 5867 4 0 2020-01-06
## 5868 0 0 2020-01-06
## 5869 10 1 2020-01-06
## 5870 11 1 2020-01-06
## 5871 0 0 2020-01-06
## 5872 1 1 2020-01-06
## 5873 5 1 2020-01-06
## 5874 3 0 2020-01-06
## 5875 8 2 2020-01-06
## 5876 38 2 2020-01-06
## 5877 25 3 2020-01-06
## 5878 0 0 2020-01-06
## 5879 5 3 2020-01-06
## 5880 3 0 2020-01-06
## 5881 20 3 2020-01-06
## 5882 12 1 2020-01-06
## 5883 43 4 2020-01-06
## 5884 43 3 2020-01-06
## 5885 0 0 2020-01-06
## 5886 4 0 2020-01-06
## 5887 8 0 2020-01-06
## 5888 80 7 2020-01-06
## 5889 7 2 2020-01-06
## 5890 21 1 2020-01-06
## 5891 7 0 2020-01-06
## 5892 1 0 2020-01-06
## 5893 16 0 2020-01-06
## 5894 1 0 2020-01-06
## 5895 6 1 2020-01-06
## 5896 0 0 2020-01-06
## 5897 25 2 2020-01-06
## 5898 1 0 2020-01-06
## 5899 5 0 2020-01-06
## 5900 3 0 2020-01-06
## 5901 4 0 2020-01-06
## 5902 3 0 2020-01-06
## 5903 8 0 2020-01-06
## 5904 0 0 2020-01-06
## 5905 43 7 2020-01-06
## 5906 134 7 2020-01-06
## 5907 5 0 2020-01-06
## 5908 40 2 2020-01-06
## 5909 8 1 2020-01-06
## 5910 0 0 2020-01-06
## 5911 0 0 2020-01-06
## 5912 7 0 2020-01-06
## 5913 6 0 2020-01-06
## 5914 2 0 2020-01-06
## 5915 0 0 2020-01-06
## 5916 2 1 2020-01-06
## 5917 33 15 2020-01-06
## 5918 4 0 2020-01-06
## 5919 33 1 2020-01-06
## 5920 5 0 2020-01-06
## 5921 112 17 2020-01-06
## 5922 0 0 2020-01-06
## 5923 28 0 2020-01-06
## 5924 2 0 2020-01-06
## 5925 0 0 2020-01-06
## 5926 16 1 2020-01-06
## 5927 0 0 2020-01-06
## 5928 0 0 2020-01-06
## 5929 21 3 2020-01-06
## 5930 0 0 2020-01-06
## 5931 16 2 2020-01-06
## 5932 2 2 2020-01-06
## 5933 143 3 2020-01-06
## 5934 4 2 2020-01-06
## 5935 63 4 2020-01-06
## 5936 0 0 2020-01-06
## 5937 50 4 2020-01-06
## 5938 1 0 2020-01-06
## 5939 3 0 2020-01-06
## 5940 1 1 2020-01-06
## 5941 15 1 2020-01-06
## 5942 0 0 2020-01-06
## 5943 6 0 2020-01-06
## 5944 0 0 2020-01-06
## 5945 5 0 2020-01-06
## 5946 12 1 2020-01-06
## 5947 40 12 2020-01-06
## 5948 113 21 2020-01-06
## 5949 2 0 2020-01-06
## 5950 31 3 2020-01-06
## 5951 3 0 2020-01-06
## 5952 0 0 2020-01-06
## 5953 8 1 2020-01-06
## 5954 9 0 2020-01-06
## 5955 8 4 2020-01-06
## 5956 6 0 2020-01-06
## 5957 0 0 2020-01-06
## 5958 20 1 2020-01-06
## 5959 2 0 2020-01-06
## 5960 0 0 2020-01-06
## 5961 46 0 2020-01-06
## 5962 5 0 2020-01-06
## 5963 4 0 2020-01-06
## 5964 0 0 2020-01-06
## 5965 112 8 2020-01-06
## 5966 6 0 2020-01-06
## 5967 0 0 2020-01-06
## 5968 2 0 2020-01-06
## 5969 0 0 2020-01-06
## 5970 13 1 2020-01-06
## 5971 35 1 2020-01-06
## 5972 22 2 2020-01-06
## 5973 15 1 2020-01-06
## 5974 24 0 2020-01-06
## 5975 0 0 2020-01-06
## 5976 9 11 2020-01-06
## 5977 1 0 2020-01-06
## 5978 14 0 2020-01-06
## 5979 307 10 2020-01-06
## 5980 3 0 2020-01-06
## 5981 3 0 2020-01-06
## 5982 12 0 2020-01-06
## 5983 0 0 2020-01-06
## 5984 7 2 2020-01-06
## 5985 3 0 2020-01-06
## 5986 172 9 2020-01-06
## 5987 0 0 2020-01-06
## 5988 48 7 2020-01-06
## 5989 11 3 2020-01-06
## 5990 0 0 2020-01-06
## 5991 0 0 2020-01-06
## 5992 8 2 2020-01-06
## 5993 21 0 2020-01-06
## 5994 5 0 2020-01-06
## 5995 6 0 2020-01-06
## 5996 25 1 2020-01-06
## 5997 0 0 2020-01-06
## 5998 2 0 2020-01-06
## 5999 8 0 2020-01-06
## 6000 0 0 2020-01-06
## 6001 10 0 2020-01-06
## 6002 2 0 2020-01-06
## 6003 104 10 2020-01-06
## 6004 1 1 2020-01-06
## 6005 5 0 2020-01-06
## 6006 0 0 2020-01-06
## 6007 0 0 2020-01-06
## 6008 0 0 2020-01-06
## 6009 34 3 2020-01-06
## 6010 35 0 2020-01-06
## 6011 0 0 2020-01-06
## 6012 23 2 2020-01-06
## 6013 1 0 2020-01-06
## 6014 30 2 2020-01-06
## 6015 10 1 2020-01-06
## 6016 4 0 2020-01-06
## 6017 6 0 2020-01-06
## 6018 13 1 2020-01-06
## 6019 12 0 2020-01-06
## 6020 4 0 2020-01-06
## 6021 23 2 2020-01-06
## 6022 3 0 2020-01-06
## 6023 18 4 2020-01-06
## 6024 0 0 2020-01-06
## 6025 10 0 2020-01-06
## 6026 0 0 2020-01-06
## 6027 0 0 2020-01-06
## 6028 0 0 2020-01-06
## 6029 70 70 2020-01-06
## 6030 6 2 2020-01-06
## 6031 0 0 2020-01-06
## 6032 3 4 2020-01-06
## 6033 6 2 2020-01-06
## 6034 22 1 2020-01-06
## 6035 13 0 2020-01-06
## 6036 23 9 2020-01-06
## 6037 18 2 2020-01-06
## 6038 1 0 2020-01-06
## 6039 14 0 2020-01-06
## 6040 7 0 2020-01-06
## 6041 10 0 2020-01-06
## 6042 0 0 2020-01-06
## 6043 13 1 2020-01-06
## 6044 1 0 2020-01-06
## 6045 4 1 2020-01-06
## 6046 0 0 2020-01-06
## 6047 1 0 2020-01-06
## 6048 0 0 2020-01-06
## 6049 4 0 2020-01-06
## 6050 1 0 2020-01-06
## 6051 15 1 2020-01-06
## 6052 16 1 2020-01-06
## 6053 0 0 2020-01-06
## 6054 2 0 2020-01-06
## 6055 3 0 2020-01-06
## 6056 0 0 2020-01-06
## 6057 1 0 2020-01-06
## 6058 2 0 2020-01-06
## 6059 28 0 2020-01-06
## 6060 1 1 2020-01-06
## 6061 3 0 2020-01-06
## 6062 0 0 2020-01-06
## 6063 434 9 2020-01-06
## 6064 468 19 2020-01-06
## 6065 3979 160 2020-01-06
## 6066 54 5 2020-01-06
## 6067 35 1 2020-01-06
## 6068 7 1 2020-01-06
## 6069 0 0 2020-01-06
## 6070 0 0 2020-01-06
## 6071 11 0 2020-01-06
## 6072 24 0 2020-01-06
## 6073 6 3 2020-01-06
## 6074 10 3 2020-01-06
## 6075 0 0 2020-01-06
## 6076 5 0 2020-01-06
## 6077 10 0 2020-01-06
## 6078 30 0 2020-01-06
## 6079 4 0 2020-01-06
## 6080 0 0 2020-01-06
## 6081 52 2 2020-01-06
## 6082 1 0 2020-01-06
## 6083 0 0 2020-01-06
## 6084 7 0 2020-01-06
## 6085 89 3 2020-01-06
## 6086 0 0 2020-01-06
## 6087 43 4 2020-01-06
## 6088 4 4 2020-01-06
## 6089 9 0 2020-01-06
## 6090 0 0 2020-01-06
## 6091 3 0 2020-01-06
## 6092 10 0 2020-01-06
## 6093 5 0 2020-01-06
## 6094 71 2 2020-01-06
## 6095 1 0 2020-01-06
## 6096 14 0 2020-01-06
## 6097 4 0 2020-01-06
## 6098 29 4 2020-01-06
## 6099 29 9 2020-01-06
## 6100 23 3 2020-01-06
## 6101 0 0 2020-01-06
## 6102 0 0 2020-01-06
## 6103 17 1 2020-01-06
## 6104 76 12 2020-01-06
## 6105 38 7 2020-01-06
## 6106 33 7 2020-01-06
## 6107 5 0 2020-01-06
## 6108 17 0 2020-01-06
## 6109 1 1 2020-01-06
## 6110 10 0 2020-01-06
## 6111 5 2 2020-01-06
## 6112 111 125 2020-01-06
## 6113 4 0 2020-01-06
## 6114 12 0 2020-01-06
## 6115 19 0 2020-01-06
## 6116 0 0 2020-01-06
## 6117 341 25 2020-01-06
## 6118 30 6 2020-01-06
## 6119 0 0 2020-01-06
## 6120 3 0 2020-01-06
## 6121 49 5 2020-01-06
## 6122 25 0 2020-01-06
## 6123 2 0 2020-01-06
## 6124 173 4 2020-01-06
## 6125 54 34 2020-01-06
## 6126 0 0 2020-01-06
## 6127 0 0 2020-01-06
## 6128 7 1 2020-01-06
## 6129 0 0 2020-01-06
## 6130 3 2 2020-01-06
## 6131 62 0 2020-01-06
## 6132 15 0 2020-01-06
## 6133 50 25 2020-01-06
## 6134 21 2 2020-01-06
## 6135 25 2 2020-01-06
## 6136 0 0 2020-01-06
## 6137 1 0 2020-01-06
## 6138 81 4 2020-01-06
## 6139 10 0 2020-01-06
## 6140 11 0 2020-01-06
## 6141 3 0 2020-01-06
## 6142 3 0 2020-01-06
## 6143 0 0 2020-01-06
## 6144 3 0 2020-01-06
## 6145 5 1 2020-01-06
## 6146 17 1 2020-01-06
## 6147 40 1 2020-01-06
## 6148 14 1 2020-01-06
## 6149 35 0 2020-01-06
## 6150 15 0 2020-01-06
## 6151 8 1 2020-01-06
## 6152 2 0 2020-01-06
## 6153 6 1 2020-01-06
## 6154 80 16 2020-01-06
## 6155 45 2 2020-01-06
## 6156 15 1 2020-01-06
## 6157 12 0 2020-01-06
## 6158 0 0 2020-01-06
## 6159 27 1 2020-01-06
## 6160 13 1 2020-01-06
## 6161 1 0 2020-01-06
## 6162 6 0 2020-01-06
## 6163 3 1 2020-01-06
## 6164 0 0 2020-01-06
## 6165 1 0 2020-01-06
## 6166 7 0 2020-01-06
## 6167 35 8 2020-01-06
## 6168 18 6 2020-01-06
## 6169 64 8 2020-01-06
## 6170 0 0 2020-01-06
## 6171 0 0 2020-01-06
## 6172 12 3 2020-01-06
## 6173 0 0 2020-01-06
## 6174 0 0 2020-01-06
## 6175 155 156 2020-01-06
## 6176 13 0 2020-01-06
## 6177 11 0 2020-01-06
## 6178 219 8 2020-01-06
## 6179 5 2 2020-01-06
## 6180 1 0 2020-01-06
## 6181 2 0 2020-01-06
## 6182 10 0 2020-01-06
## 6183 0 0 2020-01-06
## 6184 20 0 2020-01-06
## 6185 19 0 2020-01-06
## 6186 26 0 2020-01-06
## 6187 0 0 2020-01-06
## 6188 0 0 2020-01-06
## 6189 1 1 2020-01-06
## 6190 18 2 2020-01-06
## 6191 29 16 2020-01-06
## 6192 0 0 2020-01-06
## 6193 0 0 2020-01-06
## 6194 222 123 2020-01-06
## 6195 5 2 2020-01-06
## 6196 10 1 2020-01-06
## 6197 8 0 2020-01-06
## 6198 12 1 2020-01-06
## 6199 0 0 2020-01-06
## 6200 2 0 2020-01-06
## 6201 15 3 2020-01-06
## 6202 0 0 2020-01-06
## 6203 5 0 2020-01-06
## 6204 62 0 2020-01-06
## 6205 4 1 2020-01-06
## 6206 0 0 2020-01-06
## 6207 60 5 2020-01-06
## 6208 16 0 2020-01-06
## 6209 32 3 2020-01-06
## 6210 14 3 2020-01-06
## 6211 75 3 2020-01-06
## 6212 0 0 2020-01-06
## 6213 22 1 2020-01-06
## 6214 12 4 2020-01-06
## 6215 16 6 2020-01-06
## 6216 1 0 2020-01-06
## 6217 46 1 2020-01-06
## 6218 3 0 2020-01-06
## 6219 1 0 2020-01-06
## 6220 76 0 2020-01-06
## 6221 0 0 2020-01-06
## 6222 17 11 2020-01-06
## 6223 2 1 2020-01-06
## 6224 0 0 2020-01-06
## 6225 0 0 2020-01-06
## 6226 691 348 2020-01-06
## 6227 0 0 2020-01-06
## 6228 26 5 2020-01-06
## 6229 9 1 2020-01-06
## 6230 25 1 2020-01-06
## 6231 10 0 2020-01-06
## 6232 8 0 2020-01-06
## 6233 30 3 2020-01-06
## 6234 29 0 2020-01-06
## 6235 5 0 2020-01-06
## 6236 0 0 2020-01-06
## 6237 8 1 2020-01-06
## 6238 11 0 2020-01-06
## 6239 27 6 2020-01-06
## 6240 2 1 2020-01-06
## 6241 35 0 2020-01-06
## 6242 7 0 2020-01-06
## 6243 38 2 2020-01-06
## 6244 17 0 2020-01-06
## 6245 26 5 2020-01-06
## 6246 33 2 2020-01-06
## 6247 14 0 2020-01-06
## 6248 23 1 2020-01-06
## 6249 6 0 2020-01-06
## 6250 28 1 2020-01-06
## 6251 14 1 2020-01-06
## 6252 5 2 2020-01-06
## 6253 21 4 2020-01-06
## 6254 5 1 2020-01-06
## 6255 6 3 2020-01-06
## 6256 6 1 2020-01-06
## 6257 0 0 2020-01-06
## 6258 7 1 2020-01-06
## 6259 2 1 2020-01-06
## 6260 17 2 2020-01-06
## 6261 0 0 2020-01-06
## 6262 7 1 2020-01-06
## 6263 0 0 2020-01-06
## 6264 1 0 2020-01-06
## 6265 0 0 2020-01-06
## 6266 34 3 2020-01-06
## 6267 5 0 2020-01-06
## 6268 0 0 2020-01-06
## 6269 0 0 2020-01-06
## 6270 0 1 2020-01-06
## 6271 4 0 2020-01-06
## 6272 171 3 2020-01-06
## 6273 14 3 2020-01-06
## 6274 3 0 2020-01-06
## 6275 0 0 2020-01-06
## 6276 13 2 2020-01-06
## 6277 0 0 2020-01-06
## 6278 0 0 2020-01-06
## 6279 17 0 2020-01-06
## 6280 3 0 2020-01-06
## 6281 7 6 2020-01-06
## 6282 3 1 2020-01-06
## 6283 8 0 2020-01-06
## 6284 0 0 2020-01-06
## 6285 1 0 2020-01-06
## 6286 15 3 2020-01-06
## 6287 3 0 2020-01-06
## 6288 271 25 2020-01-06
## 6289 5 2 2020-01-06
## 6290 5 1 2020-01-06
## 6291 25 1 2020-01-06
## 6292 19 0 2020-01-06
## 6293 36 16 2020-01-06
## 6294 2 0 2020-01-06
## 6295 2 0 2020-01-06
## 6296 119 1 2020-01-06
## 6297 5 1 2020-01-06
## 6298 33 4 2020-01-06
## 6299 6 0 2020-01-06
## 6300 0 0 2020-01-06
## 6301 105 6 2020-01-06
## 6302 0 0 2020-01-06
## 6303 65 2 2020-01-06
## 6304 7 0 2020-01-06
## 6305 0 0 2020-01-06
## 6306 5 0 2020-01-06
## 6307 0 0 2020-01-06
## 6308 0 0 2020-01-06
## 6309 25 0 2020-01-06
## 6310 31 3 2020-01-06
## 6311 50 4 2020-01-06
## 6312 21 1 2020-01-06
## 6313 0 0 2020-01-06
## 6314 76 3 2020-01-06
## 6315 0 0 2020-01-06
## 6316 7 0 2020-01-06
## 6317 15 3 2020-01-06
## 6318 2 1 2020-01-06
## 6319 25 6 2020-01-06
## 6320 21 0 2020-01-06
## 6321 85 16 2020-01-06
## 6322 0 0 2020-01-06
## 6323 19 2 2020-01-06
## 6324 67 6 2020-01-06
## 6325 0 0 2020-01-06
## 6326 4 0 2020-01-06
## 6327 3 0 2020-01-06
## 6328 8 2 2020-01-06
## 6329 12 5 2020-01-06
## 6330 6 2 2020-01-06
## 6331 29 1 2020-01-06
## 6332 0 0 2020-01-06
## 6333 12 2 2020-01-06
## 6334 17 0 2020-01-06
## 6335 20 2 2020-01-06
## 6336 51 6 2020-01-06
## 6337 15 1 2020-01-06
## 6338 4 0 2020-01-06
## 6339 0 0 2020-01-06
## 6340 6 0 2020-01-06
## 6341 0 0 2020-01-06
## 6342 0 0 2020-01-06
## 6343 120 3 2020-01-06
## 6344 3 1 2020-01-06
## 6345 0 0 2020-01-06
## 6346 2 0 2020-01-06
## 6347 37 4 2020-01-06
## 6348 0 0 2020-01-06
## 6349 18 1 2020-01-06
## 6350 0 0 2020-01-06
## 6351 0 0 2020-01-06
## 6352 6 1 2020-01-06
## 6353 18 0 2020-01-06
## 6354 12 1 2020-01-06
## 6355 19 1 2020-01-06
## 6356 0 0 2020-01-06
## 6357 1 0 2020-01-06
## 6358 4 1 2020-01-06
## 6359 72 0 2020-01-06
## 6360 8 0 2020-01-06
## 6361 4 0 2020-01-06
## 6362 3 1 2020-01-06
## 6363 7 0 2020-01-06
## 6364 83 6 2020-01-06
## 6365 3 0 2020-01-06
## 6366 17 1 2020-01-06
## 6367 7 2 2020-01-06
## 6368 5 0 2020-01-06
## 6369 9 0 2020-01-06
## 6370 7 0 2020-01-06
## 6371 86 1 2020-01-06
## 6372 9 0 2020-01-06
## 6373 0 0 2020-01-06
## 6374 7 0 2020-01-06
## 6375 9 1 2020-01-06
## 6376 0 1 2020-01-06
## 6377 4 0 2020-01-06
## 6378 2 1 2020-01-06
## 6379 20 0 2020-01-06
## 6380 0 0 2020-01-06
## 6381 588 19 2020-01-06
## 6382 61 12 2020-01-06
## 6383 14 0 2020-01-06
## 6384 3 0 2020-01-06
## 6385 2 0 2020-01-06
## 6386 13 0 2020-01-06
## 6387 13 1 2020-01-06
## 6388 38 5 2020-01-06
## 6389 9 1 2020-01-06
## 6390 51 0 2020-01-06
## 6391 7 0 2020-01-06
## 6392 8 0 2020-01-06
## 6393 12 3 2020-01-06
## 6394 3 0 2020-01-06
## 6395 39 9 2020-01-06
## 6396 13 1 2020-01-06
## 6397 22 1 2020-01-06
## 6398 7 0 2020-01-06
## 6399 9 1 2020-01-06
## 6400 8 3 2020-01-06
## 6401 8 0 2020-01-06
## 6402 10 1 2020-01-06
## 6403 1 0 2020-01-06
## 6404 7 0 2020-01-06
## 6405 87 3 2020-01-06
## 6406 3 0 2020-01-06
## 6407 3 0 2020-01-06
## 6408 43 53 2020-01-06
## 6409 0 0 2020-01-06
## 6410 0 0 2020-01-06
## 6411 0 0 2020-01-06
## 6412 0 0 2020-01-06
## 6413 24 0 2020-01-06
## 6414 7 2 2020-01-06
## 6415 24 2 2020-01-06
## 6416 13 1 2020-01-06
## 6417 5 1 2020-01-06
## 6418 13 1 2020-01-06
## 6419 7 0 2020-01-06
## 6420 18 0 2020-01-06
## 6421 13 0 2020-01-06
## 6422 2 0 2020-01-06
## 6423 2 0 2020-01-06
## 6424 19 1 2020-01-06
## 6425 191 12 2020-01-06
## 6426 11 0 2020-01-06
## 6427 71 4 2020-01-06
## 6428 11 2 2020-01-06
## 6429 2 2 2020-01-06
## 6430 0 0 2020-01-06
## 6431 14 0 2020-01-06
## 6432 37 0 2020-01-06
## 6433 0 0 2020-01-06
## 6434 8 0 2020-01-06
## 6435 0 0 2020-01-06
## 6436 7 5 2020-01-06
## 6437 0 0 2020-01-06
## 6438 24 1 2020-01-06
## 6439 0 0 2020-01-06
## 6440 12 1 2020-01-06
## 6441 7 1 2020-01-06
## 6442 2 1 2020-01-06
## 6443 16 1 2020-01-06
## 6444 292 33 2020-01-06
## 6445 29 0 2020-01-06
## 6446 10 1 2020-01-06
## 6447 14 2 2020-01-06
## 6448 23 1 2020-01-06
## 6449 7 0 2020-01-06
## 6450 60 4 2020-01-06
## 6451 1 0 2020-01-06
## 6452 0 0 2020-01-06
## 6453 22 3 2020-01-06
## 6454 16 2 2020-01-06
## 6455 5 0 2020-01-06
## 6456 16 0 2020-01-06
## 6457 3 0 2020-01-06
## 6458 8 0 2020-01-06
## 6459 34 0 2020-01-06
## 6460 25 13 2020-01-06
## 6461 1 0 2020-01-06
## 6462 0 0 2020-01-06
## 6463 0 0 2020-01-06
## 6464 8 5 2020-01-06
## 6465 8 0 2020-01-06
## 6466 6 0 2020-01-06
## 6467 25 2 2020-01-06
## 6468 19 7 2020-01-06
## 6469 17 40 2020-01-06
## 6470 10 0 2020-01-06
## 6471 2 0 2020-01-06
## 6472 2 0 2020-01-06
## 6473 8 2 2020-01-06
## 6474 6 0 2020-01-06
## 6475 32 22 2020-01-06
## 6476 19 1 2020-01-06
## 6477 88 5 2020-01-06
## 6478 8 0 2020-01-06
## 6479 3 0 2020-01-06
## 6480 5 0 2020-01-06
## 6481 1 0 2020-01-06
## 6482 20 0 2020-01-06
## 6483 12 0 2020-01-06
## 6484 1 0 2020-01-06
## 6485 3 0 2020-01-06
## 6486 4 0 2020-01-06
## 6487 49 3 2020-01-06
## 6488 39 15 2020-01-06
## 6489 0 0 2020-01-06
## 6490 65 5 2020-01-06
## 6491 6 1 2020-01-06
## 6492 11 3 2020-01-06
## 6493 5 0 2020-01-06
## 6494 34 1 2020-01-06
## 6495 6 3 2020-01-06
## 6496 1 0 2020-01-06
## 6497 30 3 2020-01-06
## 6498 10 0 2020-01-06
## 6499 6 1 2020-01-06
## 6500 83 0 2020-01-06
## 6501 6 1 2020-01-06
## 6502 24 2 2020-01-06
## 6503 2 0 2020-01-06
## 6504 177 5 2020-01-06
## 6505 16 0 2020-01-06
## 6506 21 3 2020-01-06
## 6507 0 0 2020-01-06
## 6508 27 3 2020-01-06
## 6509 11 1 2020-01-06
## 6510 0 0 2020-01-06
## 6511 14 3 2020-01-06
## 6512 6 1 2020-01-06
## 6513 12 0 2020-01-06
## 6514 0 0 2020-01-06
## 6515 10 2 2020-01-06
## 6516 1 0 2020-01-06
## 6517 10 1 2020-01-06
## 6518 57 7 2020-01-06
## 6519 0 0 2020-01-06
## 6520 13 0 2020-01-06
## 6521 0 0 2020-01-06
## 6522 2 3 2020-01-06
## 6523 4 0 2020-01-06
## 6524 4 1 2020-01-06
## 6525 11 1 2020-01-06
## 6526 9 0 2020-01-06
## 6527 4 0 2020-01-06
## 6528 4 0 2020-01-06
## 6529 51 1 2020-01-06
## 6530 0 0 2020-01-06
## 6531 50 8 2020-01-06
## 6532 124 20 2020-01-06
## 6533 10 0 2020-01-06
## 6534 1 0 2020-01-06
## 6535 2 0 2020-01-06
## 6536 3 1 2020-01-06
## 6537 13 0 2020-01-06
## 6538 18 0 2020-01-06
## 6539 109 6 2020-01-06
## 6540 9 2 2020-01-06
## 6541 0 0 2020-01-06
## 6542 52 5 2020-01-06
## 6543 211 12 2020-01-06
## 6544 6 1 2020-01-06
## 6545 3 0 2020-01-06
## 6546 7 0 2020-01-06
## 6547 11 2 2020-01-06
## 6548 2 0 2020-01-06
## 6549 39 1 2020-01-06
## 6550 0 0 2020-01-06
## 6551 17 1 2020-01-06
## 6552 33 2 2020-01-06
## 6553 0 0 2020-01-06
## 6554 10 2 2020-01-06
## 6555 2 0 2020-01-06
## 6556 12 0 2020-01-06
## 6557 0 0 2020-01-06
## 6558 51 0 2020-01-06
## 6559 22 0 2020-01-06
## 6560 2 1 2020-01-06
## 6561 3 0 2020-01-06
## 6562 4 0 2020-01-06
## 6563 6 23 2020-01-06
## 6564 167 4 2020-01-06
## 6565 8 3 2020-01-06
## 6566 0 0 2020-01-06
## 6567 5 1 2020-01-06
## 6568 37 0 2020-01-06
## 6569 0 0 2020-01-06
## 6570 8 2 2020-01-06
## 6571 80 4 2020-01-06
## 6572 2 0 2020-01-06
## 6573 5 0 2020-01-06
## 6574 1 0 2020-01-06
## 6575 2 2 2020-01-06
## 6576 3 1 2020-01-06
## 6577 29 0 2020-01-06
## 6578 7 0 2020-01-06
## 6579 5 0 2020-01-06
## 6580 7 0 2020-01-06
## 6581 31 16 2020-01-06
## 6582 6 0 2020-01-06
## 6583 2 0 2020-01-06
## 6584 24 2 2020-01-06
## 6585 14 0 2020-01-06
## 6586 8 0 2020-01-06
## 6587 96 3 2020-01-06
## 6588 19 0 2020-01-06
## 6589 4 0 2020-01-06
## 6590 37 5 2020-01-06
## 6591 5 0 2020-01-06
## 6592 0 0 2020-01-06
## 6593 5 0 2020-01-06
## 6594 8 0 2020-01-06
## 6595 7 0 2020-01-06
## 6596 6 0 2020-01-06
## 6597 2 2 2020-01-06
## 6598 12 1 2020-01-06
## 6599 10 1 2020-01-06
## 6600 0 0 2020-01-06
## 6601 16 3 2020-01-06
## 6602 13 1 2020-01-06
## 6603 14 0 2020-01-06
## 6604 0 1 2020-01-06
## 6605 194 8 2020-01-06
## 6606 151 6 2020-01-06
## 6607 38 2 2020-01-06
## 6608 41 6 2020-01-06
## 6609 22 1 2020-01-06
## 6610 0 0 2020-01-06
## 6611 1 1 2020-01-06
## 6612 7 0 2020-01-06
## 6613 2 0 2020-01-06
## 6614 10 1 2020-01-06
## 6615 26 1 2020-01-06
## 6616 35 2 2020-01-06
## 6617 6 0 2020-01-06
## 6618 14 0 2020-01-06
## 6619 4 0 2020-01-06
## 6620 0 0 2020-01-06
## 6621 23 4 2020-01-06
## 6622 5 0 2020-01-06
## 6623 6 0 2020-01-06
## 6624 0 0 2020-01-06
## 6625 0 0 2020-01-06
## 6626 5 0 2020-01-06
## 6627 3 1 2020-01-06
## 6628 7 1 2020-01-06
## 6629 3 0 2020-01-06
## 6630 14 1 2020-01-06
## 6631 11 0 2020-01-06
## 6632 4 0 2020-01-06
## 6633 3 0 2020-01-06
## 6634 12 0 2020-01-06
## 6635 14 1 2020-01-06
## 6636 12 0 2020-01-06
## 6637 0 1 2020-01-06
## 6638 12 0 2020-01-06
## 6639 11 0 2020-01-06
## 6640 15 0 2020-01-06
## 6641 7 3 2020-01-06
## 6642 9 0 2020-01-06
## 6643 13 2 2020-01-06
## 6644 2 0 2020-01-06
## 6645 93 7 2020-01-06
## 6646 25 0 2020-01-06
## 6647 2 0 2020-01-06
## 6648 1 0 2020-01-06
## 6649 7 1 2020-01-06
## 6650 0 0 2020-01-06
## 6651 74 3 2020-01-06
## 6652 57 3 2020-01-06
## 6653 1 0 2020-01-06
## 6654 47 7 2020-01-06
## 6655 0 0 2020-01-06
## 6656 38 3 2020-01-06
## 6657 0 0 2020-01-06
## 6658 10 0 2020-01-06
## 6659 4 1 2020-01-06
## 6660 0 0 2020-01-06
## 6661 12 0 2020-01-06
## 6662 0 0 2020-01-06
## 6663 16 1 2020-01-06
## 6664 6 6 2020-01-06
## 6665 1 0 2020-01-06
## 6666 7 0 2020-01-06
## 6667 0 0 2020-01-06
## 6668 0 0 2020-01-06
## 6669 8 1 2020-01-06
## 6670 5 0 2020-01-06
## 6671 9 1 2020-01-06
## 6672 44 0 2020-01-06
## 6673 22 1 2020-01-06
## 6674 7 0 2020-01-06
## 6675 16 2 2020-01-06
## 6676 13 1 2020-01-06
## 6677 5 0 2020-01-06
## 6678 1 0 2020-01-06
## 6679 1 0 2020-01-06
## 6680 0 0 2020-01-06
## 6681 8 2 2020-01-06
## 6682 9 0 2020-01-06
## 6683 109 4 2020-01-06
## 6684 1 0 2020-01-06
## 6685 93 1 2020-01-06
## 6686 0 0 2020-01-06
## 6687 13 0 2020-01-06
## 6688 8 0 2020-01-06
## 6689 6 1 2020-01-06
## 6690 0 0 2020-01-06
## 6691 1 0 2020-01-06
## 6692 4 0 2020-01-06
## 6693 11 1 2020-01-06
## 6694 5 0 2020-01-06
## 6695 5 1 2020-01-06
## 6696 10 0 2020-01-06
## 6697 14 1 2020-01-06
## 6698 3 1 2020-01-06
## 6699 2 0 2020-01-06
## 6700 5 0 2020-01-06
## 6701 985 31 2020-01-06
## 6702 0 0 2020-01-06
## 6703 0 0 2020-01-06
## 6704 4 0 2020-01-06
## 6705 3 0 2020-01-06
## 6706 10 2 2020-01-06
## 6707 10 0 2020-01-06
## 6708 1 0 2020-01-06
## 6709 0 0 2020-01-06
## 6710 11 5 2020-01-06
## 6711 5 1 2020-01-06
## 6712 40 8 2020-01-06
## 6713 28 6 2020-01-06
## 6714 9 0 2020-01-06
## 6715 3 0 2020-01-06
## 6716 11 1 2020-01-06
## 6717 2 0 2020-01-06
## 6718 0 0 2020-01-06
## 6719 62 3 2020-01-06
## 6720 16 10 2020-01-06
## 6721 10 1 2020-01-06
## 6722 7 0 2020-01-06
## 6723 22 0 2020-01-06
## 6724 25 0 2020-01-06
## 6725 118 15 2020-01-06
## 6726 18 5 2020-01-06
## 6727 2 1 2020-01-06
## 6728 0 0 2020-01-06
## 6729 1 0 2020-01-06
## 6730 18 2 2020-01-06
## 6731 44 3 2020-01-06
## 6732 3 2 2020-01-06
## 6733 92 6 2020-01-06
## 6734 1 0 2020-01-06
## 6735 14 0 2020-01-06
## 6736 6 0 2020-01-06
## 6737 2 0 2020-01-06
## 6738 27 1 2020-01-06
## 6739 1 4 2020-01-06
## 6740 0 1 2020-01-06
## 6741 5 1 2020-01-06
## 6742 40 3 2020-01-06
## 6743 5 0 2020-01-06
## 6744 13 0 2020-01-06
## 6745 1 0 2020-01-06
## 6746 32 5 2020-01-06
## 6747 1 0 2020-01-06
## 6748 5 0 2020-01-06
## 6749 15 3 2020-01-06
## 6750 6 2 2020-01-06
## 6751 0 0 2020-01-06
## 6752 2 0 2020-01-06
## 6753 14 1 2020-01-06
## 6754 5 0 2020-01-06
## 6755 1 0 2020-01-06
## 6756 9 1 2020-01-06
## 6757 74 7 2020-01-06
## 6758 0 0 2020-01-06
## 6759 25 9 2020-01-06
## 6760 15 0 2020-01-06
## 6761 0 0 2020-01-06
## 6762 2 1 2020-01-06
## 6763 2 2 2020-01-06
## 6764 0 0 2020-01-06
## 6765 1 0 2020-01-06
## 6766 81 6 2020-01-06
## 6767 10 0 2020-01-06
## 6768 0 0 2020-01-06
## 6769 0 0 2020-01-06
## 6770 0 0 2020-01-06
## 6771 13 0 2020-01-06
## 6772 37 2 2020-01-06
## 6773 15 0 2020-01-06
## 6774 0 0 2020-01-06
## 6775 4 0 2020-01-06
## 6776 18 0 2020-01-06
## 6777 44 2 2020-01-06
## 6778 14 0 2020-01-06
## 6779 1 0 2020-01-06
## 6780 0 0 2020-01-06
## 6781 12 0 2020-01-06
## 6782 11 0 2020-01-06
## 6783 0 0 2020-01-06
## 6784 1 1 2020-01-06
## 6785 1 0 2020-01-06
## 6786 19 0 2020-01-06
## 6787 62 0 2020-01-06
## 6788 3 0 2020-01-06
## 6789 2 1 2020-01-06
## 6790 0 0 2020-01-06
## 6791 0 0 2020-01-06
## 6792 5 0 2020-01-06
## 6793 0 0 2020-01-06
## 6794 0 0 2020-01-06
## 6795 15 2 2020-01-06
## 6796 8 0 2020-01-06
## 6797 12 4 2020-01-06
## 6798 75 6 2020-01-06
## 6799 5 0 2020-01-06
## 6800 19 0 2020-01-06
## 6801 4 0 2020-01-06
## 6802 0 0 2020-01-06
## 6803 0 0 2020-01-06
## 6804 0 0 2020-01-06
## 6805 2 0 2020-01-06
## 6806 2 0 2020-01-06
## 6807 17 1 2020-01-06
## 6808 6 0 2020-01-06
## 6809 3 0 2020-01-06
## 6810 0 0 2020-01-06
## 6811 16 0 2020-01-06
## 6812 210 278 2020-01-06
## 6813 12 0 2020-01-06
## 6814 6 1 2020-01-06
## 6815 68 3 2020-01-06
## 6816 6 0 2020-01-06
## 6817 4 0 2020-01-06
## 6818 9 0 2020-01-06
## 6819 1 0 2020-01-06
## 6820 7 0 2020-01-06
## 6821 0 0 2020-01-06
## 6822 4 0 2020-01-06
## 6823 7 0 2020-01-06
## 6824 6 2 2020-01-06
## 6825 8 0 2020-01-06
## 6826 70 3 2020-01-06
## 6827 6 0 2020-01-06
## 6828 1 0 2020-01-06
## 6829 3 0 2020-01-06
## 6830 3 0 2020-01-06
## 6831 15 0 2020-01-06
## 6832 1318 177 2020-01-06
## 6833 12 1 2020-01-06
## 6834 0 0 2020-01-06
## 6835 6 0 2020-01-06
## 6836 10 0 2020-01-06
## 6837 2 0 2020-01-06
## 6838 20 1 2020-01-06
## 6839 59 9 2020-01-06
## 6840 54 1 2020-01-06
## 6841 5 0 2020-01-06
## 6842 0 0 2020-01-06
## 6843 8 2 2020-01-06
## 6844 0 0 2020-01-06
## 6845 4 0 2020-01-06
## 6846 10 3 2020-01-06
## 6847 7 1 2020-01-06
## 6848 19 4 2020-01-06
## 6849 30 2 2020-01-06
## 6850 4 0 2020-01-06
## 6851 80 6 2020-01-06
## 6852 8 0 2020-01-06
## 6853 91 4 2020-01-06
## 6854 38 4 2020-01-06
## 6855 0 0 2020-01-06
## 6856 21 1 2020-01-06
## 6857 12 0 2020-01-06
## 6858 0 0 2020-01-06
## 6859 1 0 2020-01-06
## 6860 0 0 2020-01-07
## 6861 7 0 2020-01-07
## 6862 7 2 2020-01-07
## 6863 4 0 2020-01-07
## 6864 35 6 2020-01-07
## 6865 0 0 2020-01-07
## 6866 60 8 2020-01-07
## 6867 0 0 2020-01-07
## 6868 0 0 2020-01-07
## 6869 22 1 2020-01-07
## 6870 1 0 2020-01-07
## 6871 2 1 2020-01-07
## 6872 2 0 2020-01-07
## 6873 25 1 2020-01-07
## 6874 0 0 2020-01-07
## 6875 9 2 2020-01-07
## 6876 0 1 2020-01-07
## 6877 2 0 2020-01-07
## 6878 46 13 2020-01-07
## 6879 0 0 2020-01-07
## 6880 0 0 2020-01-07
## 6881 14 0 2020-01-07
## 6882 206 29 2020-01-07
## 6883 60 18 2020-01-07
## 6884 0 0 2020-01-07
## 6885 6 0 2020-01-07
## 6886 1 1 2020-01-07
## 6887 0 0 2020-01-07
## 6888 6 0 2020-01-07
## 6889 16 2 2020-01-07
## 6890 13 1 2020-01-07
## 6891 0 0 2020-01-07
## 6892 26 2 2020-01-07
## 6893 4 0 2020-01-07
## 6894 3 2 2020-01-07
## 6895 0 0 2020-01-07
## 6896 76 5 2020-01-07
## 6897 19 0 2020-01-07
## 6898 10 0 2020-01-07
## 6899 0 0 2020-01-07
## 6900 2 0 2020-01-07
## 6901 1 1 2020-01-07
## 6902 3 0 2020-01-07
## 6903 10 0 2020-01-07
## 6904 0 0 2020-01-07
## 6905 10 0 2020-01-07
## 6906 0 0 2020-01-07
## 6907 90 118 2020-01-07
## 6908 1 0 2020-01-07
## 6909 14 4 2020-01-07
## 6910 17 4 2020-01-07
## 6911 14 0 2020-01-07
## 6912 14 0 2020-01-07
## 6913 25 3 2020-01-07
## 6914 0 0 2020-01-07
## 6915 3 0 2020-01-07
## 6916 0 0 2020-01-07
## 6917 7 0 2020-01-07
## 6918 9 1 2020-01-07
## 6919 0 0 2020-01-07
## 6920 0 0 2020-01-07
## 6921 13 1 2020-01-07
## 6922 13 0 2020-01-07
## 6923 16 0 2020-01-07
## 6924 5 0 2020-01-07
## 6925 32 3 2020-01-07
## 6926 203 3 2020-01-07
## 6927 1 0 2020-01-07
## 6928 0 0 2020-01-07
## 6929 5 0 2020-01-07
## 6930 5 0 2020-01-07
## 6931 6 0 2020-01-07
## 6932 0 0 2020-01-07
## 6933 53 3 2020-01-07
## 6934 2 0 2020-01-07
## 6935 20 0 2020-01-07
## 6936 14 3 2020-01-07
## 6937 0 0 2020-01-07
## 6938 0 0 2020-01-07
## 6939 5 0 2020-01-07
## 6940 8 0 2020-01-07
## 6941 0 0 2020-01-07
## 6942 120 1 2020-01-07
## 6943 0 0 2020-01-07
## 6944 7 1 2020-01-07
## 6945 0 0 2020-01-07
## 6946 0 0 2020-01-07
## 6947 0 0 2020-01-07
## 6948 3 1 2020-01-07
## 6949 34 2 2020-01-07
## 6950 3 1 2020-01-07
## 6951 0 0 2020-01-07
## 6952 0 0 2020-01-07
## 6953 15 0 2020-01-07
## 6954 48 4 2020-01-07
## 6955 11 1 2020-01-07
## 6956 28 3 2020-01-07
## 6957 2 0 2020-01-07
## 6958 6 1 2020-01-07
## 6959 36 4 2020-01-07
## 6960 12 1 2020-01-07
## 6961 7 0 2020-01-07
## 6962 5 0 2020-01-07
## 6963 12 3 2020-01-07
## 6964 35 1 2020-01-07
## 6965 18 0 2020-01-07
## 6966 87 2 2020-01-07
## 6967 0 0 2020-01-07
## 6968 0 0 2020-01-07
## 6969 37 2 2020-01-07
## 6970 0 0 2020-01-07
## 6971 4 0 2020-01-07
## 6972 51 6 2020-01-07
## 6973 4 0 2020-01-07
## 6974 47 16 2020-01-07
## 6975 0 0 2020-01-07
## 6976 2 0 2020-01-07
## 6977 18 2 2020-01-07
## 6978 0 0 2020-01-07
## 6979 0 1 2020-01-07
## 6980 49 8 2020-01-07
## 6981 0 0 2020-01-07
## 6982 67 1 2020-01-07
## 6983 2 1 2020-01-07
## 6984 17 0 2020-01-07
## 6985 143 11 2020-01-07
## 6986 8 1 2020-01-07
## 6987 17 0 2020-01-07
## 6988 14 1 2020-01-07
## 6989 124 22 2020-01-07
## 6990 2 0 2020-01-07
## 6991 2 0 2020-01-07
## 6992 21 2 2020-01-07
## 6993 0 0 2020-01-07
## 6994 2 1 2020-01-07
## 6995 0 0 2020-01-07
## 6996 4 1 2020-01-07
## 6997 180 23 2020-01-07
## 6998 16 0 2020-01-07
## 6999 0 0 2020-01-07
## 7000 0 0 2020-01-07
## 7001 31 3 2020-01-07
## 7002 11 0 2020-01-07
## 7003 0 0 2020-01-07
## 7004 20 0 2020-01-07
## 7005 1 1 2020-01-07
## 7006 114 2 2020-01-07
## 7007 71 2 2020-01-07
## 7008 8 2 2020-01-07
## 7009 12 0 2020-01-07
## 7010 0 0 2020-01-07
## 7011 11 4 2020-01-07
## 7012 21 1 2020-01-07
## 7013 0 0 2020-01-07
## 7014 2 0 2020-01-07
## 7015 48 5 2020-01-07
## 7016 23 2 2020-01-07
## 7017 1 1 2020-01-07
## 7018 0 0 2020-01-07
## 7019 0 0 2020-01-07
## 7020 40 0 2020-01-07
## 7021 12 5 2020-01-07
## 7022 12 0 2020-01-07
## 7023 15 2 2020-01-07
## 7024 2 0 2020-01-07
## 7025 3 1 2020-01-07
## 7026 37 0 2020-01-07
## 7027 5 0 2020-01-07
## 7028 5 0 2020-01-07
## 7029 0 0 2020-01-07
## 7030 4 0 2020-01-07
## 7031 0 0 2020-01-07
## 7032 0 0 2020-01-07
## 7033 12 1 2020-01-07
## 7034 0 0 2020-01-07
## 7035 2 0 2020-01-07
## 7036 19 1 2020-01-07
## 7037 0 2 2020-01-07
## 7038 0 0 2020-01-07
## 7039 8 0 2020-01-07
## 7040 0 0 2020-01-07
## 7041 18 0 2020-01-07
## 7042 5 0 2020-01-07
## 7043 0 0 2020-01-07
## 7044 0 0 2020-01-07
## 7045 19 1 2020-01-07
## 7046 64 5 2020-01-07
## 7047 10 0 2020-01-07
## 7048 0 0 2020-01-07
## 7049 0 0 2020-01-07
## 7050 45 3 2020-01-07
## 7051 28 0 2020-01-07
## 7052 16 0 2020-01-07
## 7053 0 1 2020-01-07
## 7054 0 0 2020-01-07
## 7055 11 0 2020-01-07
## 7056 16 2 2020-01-07
## 7057 6 0 2020-01-07
## 7058 5 1 2020-01-07
## 7059 0 1 2020-01-07
## 7060 39 4 2020-01-07
## 7061 111 6 2020-01-07
## 7062 14 2 2020-01-07
## 7063 0 0 2020-01-07
## 7064 35 4 2020-01-07
## 7065 0 0 2020-01-07
## 7066 0 0 2020-01-07
## 7067 5 2 2020-01-07
## 7068 33 2 2020-01-07
## 7069 0 0 2020-01-07
## 7070 0 0 2020-01-07
## 7071 0 0 2020-01-07
## 7072 7 0 2020-01-07
## 7073 0 0 2020-01-07
## 7074 1 0 2020-01-07
## 7075 69 1 2020-01-07
## 7076 6 0 2020-01-07
## 7077 11 0 2020-01-07
## 7078 10 2 2020-01-07
## 7079 2 0 2020-01-07
## 7080 12 0 2020-01-07
## 7081 6 2 2020-01-07
## 7082 3 0 2020-01-07
## 7083 39 9 2020-01-07
## 7084 7 0 2020-01-07
## 7085 0 0 2020-01-07
## 7086 4 0 2020-01-07
## 7087 0 0 2020-01-07
## 7088 8 0 2020-01-07
## 7089 0 0 2020-01-07
## 7090 0 0 2020-01-07
## 7091 41 2 2020-01-07
## 7092 3 1 2020-01-07
## 7093 7 1 2020-01-07
## 7094 12 5 2020-01-07
## 7095 22 0 2020-01-07
## 7096 33 4 2020-01-07
## 7097 190 17 2020-01-07
## 7098 9 0 2020-01-07
## 7099 36 3 2020-01-07
## 7100 8 0 2020-01-07
## 7101 44 1 2020-01-07
## 7102 11 2 2020-01-07
## 7103 3 1 2020-01-07
## 7104 0 0 2020-01-07
## 7105 203 6 2020-01-07
## 7106 3 0 2020-01-07
## 7107 12 1 2020-01-07
## 7108 0 0 2020-01-07
## 7109 15 2 2020-01-07
## 7110 22 6 2020-01-07
## 7111 4 0 2020-01-07
## 7112 0 0 2020-01-07
## 7113 19 1 2020-01-07
## 7114 0 0 2020-01-07
## 7115 16 3 2020-01-07
## 7116 0 0 2020-01-07
## 7117 0 0 2020-01-07
## 7118 4 0 2020-01-07
## 7119 12 2 2020-01-07
## 7120 0 0 2020-01-07
## 7121 29 1 2020-01-07
## 7122 47 4 2020-01-07
## 7123 0 0 2020-01-07
## 7124 4 1 2020-01-07
## 7125 2 0 2020-01-07
## 7126 23 0 2020-01-07
## 7127 3 0 2020-01-07
## 7128 5 3 2020-01-07
## 7129 31 6 2020-01-07
## 7130 5 1 2020-01-07
## 7131 13 2 2020-01-07
## 7132 0 0 2020-01-07
## 7133 0 0 2020-01-07
## 7134 4 2 2020-01-07
## 7135 21 2 2020-01-07
## 7136 1 0 2020-01-07
## 7137 14 1 2020-01-07
## 7138 18 1 2020-01-07
## 7139 104 3 2020-01-07
## 7140 0 0 2020-01-07
## 7141 0 0 2020-01-07
## 7142 187 8 2020-01-07
## 7143 4 0 2020-01-07
## 7144 33 1 2020-01-07
## 7145 56 7 2020-01-07
## 7146 18 0 2020-01-07
## 7147 19 6 2020-01-07
## 7148 11 1 2020-01-07
## 7149 1 0 2020-01-07
## 7150 0 0 2020-01-07
## 7151 54 3 2020-01-07
## 7152 6 1 2020-01-07
## 7153 0 0 2020-01-07
## 7154 39 5 2020-01-07
## 7155 19 2 2020-01-07
## 7156 1 0 2020-01-07
## 7157 8 0 2020-01-07
## 7158 49 6 2020-01-07
## 7159 21 4 2020-01-07
## 7160 0 0 2020-01-07
## 7161 8 0 2020-01-07
## 7162 1 0 2020-01-07
## 7163 17 2 2020-01-07
## 7164 11 2 2020-01-07
## 7165 149 6 2020-01-07
## 7166 0 0 2020-01-07
## 7167 1 3 2020-01-07
## 7168 2 0 2020-01-07
## 7169 3 1 2020-01-07
## 7170 11 1 2020-01-07
## 7171 157 6 2020-01-07
## 7172 55 8 2020-01-07
## 7173 10 5 2020-01-07
## 7174 47 0 2020-01-07
## 7175 4 0 2020-01-07
## 7176 589 16 2020-01-07
## 7177 7 0 2020-01-07
## 7178 0 0 2020-01-07
## 7179 2 0 2020-01-07
## 7180 8 2 2020-01-07
## 7181 3 0 2020-01-07
## 7182 64 7 2020-01-07
## 7183 0 0 2020-01-07
## 7184 12 0 2020-01-07
## 7185 26 3 2020-01-07
## 7186 6 1 2020-01-07
## 7187 4 0 2020-01-07
## 7188 16 1 2020-01-07
## 7189 215 18 2020-01-07
## 7190 1 0 2020-01-07
## 7191 0 0 2020-01-07
## 7192 2 1 2020-01-07
## 7193 8 0 2020-01-07
## 7194 5 0 2020-01-07
## 7195 1 0 2020-01-07
## 7196 5 4 2020-01-07
## 7197 7 1 2020-01-07
## 7198 2 0 2020-01-07
## 7199 1 0 2020-01-07
## 7200 72 2 2020-01-07
## 7201 4 0 2020-01-07
## 7202 14 2 2020-01-07
## 7203 0 2 2020-01-07
## 7204 8 0 2020-01-07
## 7205 0 0 2020-01-07
## 7206 3 0 2020-01-07
## 7207 0 0 2020-01-07
## 7208 8 2 2020-01-07
## 7209 6 0 2020-01-07
## 7210 49 3 2020-01-07
## 7211 0 0 2020-01-07
## 7212 107 14 2020-01-07
## 7213 0 0 2020-01-07
## 7214 4 0 2020-01-07
## 7215 5 0 2020-01-07
## 7216 65 5 2020-01-07
## 7217 4 0 2020-01-07
## 7218 7 0 2020-01-07
## 7219 1 1 2020-01-07
## 7220 2 0 2020-01-07
## 7221 15 1 2020-01-07
## 7222 1 0 2020-01-07
## 7223 13 1 2020-01-07
## 7224 177 17 2020-01-07
## 7225 1 0 2020-01-07
## 7226 9 2 2020-01-07
## 7227 23 3 2020-01-07
## 7228 1 0 2020-01-07
## 7229 1 0 2020-01-07
## 7230 50 7 2020-01-07
## 7231 4 0 2020-01-07
## 7232 71 1 2020-01-07
## 7233 4 0 2020-01-07
## 7234 20 0 2020-01-07
## 7235 0 0 2020-01-07
## 7236 0 0 2020-01-07
## 7237 0 0 2020-01-07
## 7238 2 1 2020-01-07
## 7239 1 0 2020-01-07
## 7240 17 1 2020-01-07
## 7241 2 0 2020-01-07
## 7242 0 0 2020-01-07
## 7243 0 0 2020-01-07
## 7244 4 0 2020-01-07
## 7245 519 31 2020-01-07
## 7246 0 0 2020-01-07
## 7247 3 0 2020-01-07
## 7248 35 4 2020-01-07
## 7249 1 1 2020-01-07
## 7250 0 0 2020-01-07
## 7251 0 0 2020-01-07
## 7252 68 2 2020-01-07
## 7253 27 6 2020-01-07
## 7254 33 9 2020-01-07
## 7255 0 0 2020-01-07
## 7256 1 3 2020-01-07
## 7257 2 0 2020-01-07
## 7258 6 0 2020-01-07
## 7259 45 2 2020-01-07
## 7260 0 0 2020-01-07
## 7261 10 3 2020-01-07
## 7262 1 0 2020-01-07
## 7263 5 0 2020-01-07
## 7264 52 3 2020-01-07
## 7265 8 2 2020-01-07
## 7266 59 8 2020-01-07
## 7267 0 0 2020-01-07
## 7268 9 3 2020-01-07
## 7269 9 0 2020-01-07
## 7270 131 7 2020-01-07
## 7271 2 0 2020-01-07
## 7272 19 1 2020-01-07
## 7273 0 0 2020-01-07
## 7274 5 1 2020-01-07
## 7275 0 0 2020-01-07
## 7276 12 0 2020-01-07
## 7277 0 0 2020-01-07
## 7278 0 0 2020-01-07
## 7279 0 0 2020-01-07
## 7280 3 0 2020-01-07
## 7281 0 0 2020-01-07
## 7282 22 1 2020-01-07
## 7283 63 9 2020-01-07
## 7284 18 11 2020-01-07
## 7285 2 0 2020-01-07
## 7286 0 0 2020-01-07
## 7287 25 3 2020-01-07
## 7288 1 0 2020-01-07
## 7289 8 0 2020-01-07
## 7290 31 1 2020-01-07
## 7291 9 0 2020-01-07
## 7292 0 0 2020-01-07
## 7293 26 5 2020-01-07
## 7294 5 4 2020-01-07
## 7295 41 2 2020-01-07
## 7296 11 2 2020-01-07
## 7297 13 0 2020-01-07
## 7298 2 1 2020-01-07
## 7299 133 4 2020-01-07
## 7300 3 0 2020-01-07
## 7301 5 2 2020-01-07
## 7302 38 11 2020-01-07
## 7303 3 0 2020-01-07
## 7304 10 0 2020-01-07
## 7305 4 0 2020-01-07
## 7306 14 0 2020-01-07
## 7307 136 5 2020-01-07
## 7308 12 0 2020-01-07
## 7309 30 1 2020-01-07
## 7310 6 0 2020-01-07
## 7311 0 0 2020-01-07
## 7312 41 4 2020-01-07
## 7313 4 0 2020-01-07
## 7314 1 0 2020-01-07
## 7315 9 0 2020-01-07
## 7316 10 0 2020-01-07
## 7317 16 0 2020-01-07
## 7318 13 6 2020-01-06
## 7319 1 0 2020-01-06
## 7320 6 0 2020-01-06
## 7321 6 0 2020-01-06
## 7322 32 4 2020-01-06
## 7323 7 0 2020-01-06
## 7324 15 0 2020-01-06
## 7325 130 10 2020-01-06
## 7326 0 0 2020-01-06
## 7327 6 3 2020-01-06
## 7328 9 0 2020-01-06
## 7329 4 0 2020-01-06
## 7330 5 4 2020-01-06
## 7331 18 0 2020-01-06
## 7332 62 3 2020-01-06
## 7333 103 0 2020-01-06
## 7334 0 0 2020-01-06
## 7335 29 1 2020-01-06
## 7336 5 0 2020-01-06
## 7337 3 1 2020-01-06
## 7338 3 0 2020-01-06
## 7339 20 1 2020-01-06
## 7340 6 0 2020-01-06
## 7341 1 0 2020-01-06
## 7342 3 0 2020-01-06
## 7343 0 0 2020-01-06
## 7344 13 2 2020-01-06
## 7345 5 1 2020-01-06
## 7346 5 1 2020-01-06
## 7347 1 0 2020-01-06
## 7348 4 0 2020-01-06
## 7349 41 3 2020-01-06
## 7350 10 2 2020-01-06
## 7351 135 5 2020-01-06
## 7352 4 0 2020-01-06
## 7353 0 0 2020-01-06
## 7354 6 0 2020-01-06
## 7355 12 2 2020-01-06
## 7356 11 0 2020-01-06
## 7357 17 5 2020-01-06
## 7358 6 2 2020-01-06
## 7359 57 16 2020-01-06
## 7360 2 0 2020-01-07
## 7361 0 0 2020-01-07
## 7362 3 3 2020-01-07
## 7363 60 18 2020-01-07
## 7364 2 0 2020-01-07
## 7365 0 0 2020-01-07
## 7366 0 0 2020-01-07
## 7367 1 2 2020-01-07
## 7368 0 0 2020-01-07
## 7369 1 0 2020-01-07
## 7370 0 0 2020-01-07
## 7371 6 0 2020-01-07
## 7372 11 1 2020-01-07
## 7373 1 0 2020-01-07
## 7374 0 0 2020-01-07
## 7375 5 0 2020-01-07
## 7376 9 2 2020-01-07
## 7377 8 1 2020-01-07
## 7378 21 3 2020-01-07
## 7379 90 18 2020-01-07
## 7380 0 0 2020-01-07
## 7381 0 0 2020-01-07
## 7382 35 1 2020-01-07
## 7383 67 2 2020-01-07
## 7384 4 1 2020-01-07
## 7385 50 0 2020-01-07
## 7386 0 0 2020-01-07
## 7387 4 0 2020-01-07
## 7388 3 3 2020-01-07
## 7389 10 0 2020-01-07
## 7390 1 0 2020-01-07
## 7391 7 1 2020-01-07
## 7392 4 0 2020-01-07
## 7393 7 2 2020-01-07
## 7394 1 0 2020-01-07
## 7395 92 5 2020-01-07
## 7396 2 0 2020-01-07
## 7397 8 0 2020-01-07
## 7398 0 0 2020-01-07
## 7399 28 0 2020-01-07
## 7400 0 0 2020-01-07
## 7401 14 5 2020-01-07
## 7402 7 1 2020-01-07
## 7403 0 0 2020-01-07
## 7404 8 3 2020-01-07
## 7405 21 5 2020-01-07
## 7406 0 0 2020-01-07
## 7407 5 3 2020-01-07
## 7408 0 0 2020-01-07
## 7409 2 0 2020-01-07
## 7410 0 0 2020-01-07
## 7411 5 0 2020-01-07
## 7412 85 3 2020-01-07
## 7413 5 0 2020-01-07
## 7414 5 0 2020-01-07
## 7415 24 2 2020-01-07
## 7416 2 0 2020-01-07
## 7417 5 0 2020-01-07
## 7418 4 0 2020-01-07
## 7419 0 0 2020-01-07
## 7420 8 1 2020-01-07
## 7421 8 0 2020-01-07
## 7422 0 0 2020-01-07
## 7423 26 3 2020-01-07
## 7424 0 0 2020-01-07
## 7425 13 2 2020-01-07
## 7426 18 1 2020-01-07
## 7427 0 0 2020-01-07
## 7428 1 1 2020-01-07
## 7429 0 0 2020-01-07
## 7430 6 0 2020-01-07
## 7431 15 7 2020-01-07
## 7432 22 1 2020-01-07
## 7433 0 0 2020-01-07
## 7434 0 0 2020-01-07
## 7435 0 0 2020-01-07
## 7436 2 0 2020-01-07
## 7437 8 0 2020-01-07
## 7438 10 1 2020-01-07
## 7439 1 0 2020-01-07
## 7440 321 4 2020-01-07
## 7441 0 0 2020-01-07
## 7442 1 1 2020-01-07
## 7443 4 1 2020-01-07
## 7444 4 0 2020-01-07
## 7445 3 0 2020-01-07
## 7446 4 1 2020-01-07
## 7447 30 6 2020-01-07
## 7448 2 0 2020-01-07
## 7449 5 1 2020-01-07
## 7450 14 3 2020-01-07
## 7451 0 0 2020-01-07
## 7452 0 0 2020-01-07
## 7453 4 2 2020-01-07
## 7454 0 0 2020-01-07
## 7455 1 0 2020-01-07
## 7456 1 0 2020-01-07
## 7457 8 1 2020-01-07
## 7458 0 0 2020-01-07
## 7459 10 0 2020-01-07
## 7460 7 1 2020-01-07
## 7461 75 7 2020-01-07
## 7462 4 10 2020-01-07
## 7463 15 0 2020-01-07
## 7464 14 4 2020-01-07
## 7465 50 6 2020-01-07
## 7466 0 0 2020-01-07
## 7467 9 0 2020-01-07
## 7468 3 0 2020-01-07
## 7469 9 0 2020-01-07
## 7470 0 0 2020-01-07
## 7471 0 0 2020-01-07
## 7472 3 0 2020-01-07
## 7473 7 0 2020-01-07
## 7474 12 2 2020-01-07
## 7475 1 0 2020-01-07
## 7476 0 0 2020-01-07
## 7477 7 0 2020-01-07
## 7478 0 0 2020-01-07
## 7479 3 0 2020-01-07
## 7480 0 0 2020-01-07
## 7481 10 0 2020-01-07
## 7482 4 1 2020-01-07
## 7483 59 4 2020-01-07
## 7484 0 0 2020-01-07
## 7485 2 0 2020-01-07
## 7486 2 0 2020-01-07
## 7487 0 0 2020-01-07
## 7488 0 0 2020-01-07
## 7489 0 0 2020-01-07
## 7490 0 0 2020-01-07
## 7491 14 2 2020-01-07
## 7492 0 0 2020-01-07
## 7493 12 1 2020-01-07
## 7494 1 0 2020-01-07
## 7495 22 0 2020-01-07
## 7496 3 1 2020-01-07
## 7497 4 0 2020-01-07
## 7498 64 10 2020-01-07
## 7499 0 0 2020-01-07
## 7500 41 5 2020-01-07
## 7501 18 0 2020-01-07
## 7502 3 0 2020-01-07
## 7503 0 0 2020-01-07
## 7504 0 0 2020-01-07
## 7505 4 0 2020-01-07
## 7506 0 0 2020-01-07
## 7507 14 1 2020-01-07
## 7508 3 0 2020-01-07
## 7509 2 1 2020-01-07
## 7510 2 0 2020-01-07
## 7511 8 0 2020-01-07
## 7512 10 2 2020-01-07
## 7513 2 0 2020-01-07
## 7514 14 1 2020-01-07
## 7515 1 0 2020-01-07
## 7516 47 4 2020-01-07
## 7517 12 2 2020-01-07
## 7518 0 0 2020-01-07
## 7519 1 0 2020-01-07
## 7520 5 1 2020-01-07
## 7521 16 1 2020-01-07
## 7522 18 5 2020-01-07
## 7523 2 1 2020-01-07
## 7524 3 0 2020-01-07
## 7525 5 0 2020-01-07
## 7526 19 2 2020-01-07
## 7527 1 0 2020-01-07
## 7528 0 0 2020-01-07
## 7529 17 2 2020-01-07
## 7530 1 0 2020-01-07
## 7531 17 0 2020-01-07
## 7532 2 0 2020-01-07
## 7533 3 1 2020-01-07
## 7534 0 0 2020-01-07
## 7535 0 0 2020-01-07
## 7536 0 0 2020-01-07
## 7537 33 4 2020-01-07
## 7538 45 0 2020-01-07
## 7539 10 2 2020-01-07
## 7540 3 0 2020-01-07
## 7541 0 0 2020-01-07
## 7542 8 1 2020-01-07
## 7543 0 0 2020-01-07
## 7544 0 0 2020-01-07
## 7545 12 0 2020-01-07
## 7546 8 1 2020-01-07
## 7547 37 1 2020-01-07
## 7548 13 0 2020-01-07
## 7549 0 0 2020-01-07
## 7550 47 8 2020-01-07
## 7551 5 0 2020-01-07
## 7552 23 0 2020-01-07
## 7553 2 0 2020-01-07
## 7554 19 2 2020-01-07
## 7555 12 2 2020-01-07
## 7556 10 0 2020-01-07
## 7557 12 0 2020-01-07
## 7558 3 1 2020-01-07
## 7559 23 0 2020-01-07
## 7560 15 0 2020-01-07
## 7561 334 180 2020-01-07
## 7562 7 4 2020-01-07
## 7563 33 2 2020-01-07
## 7564 0 0 2020-01-07
## 7565 42 8 2020-01-07
## 7566 4 0 2020-01-07
## 7567 0 0 2020-01-07
## 7568 5 2 2020-01-07
## 7569 8 2 2020-01-07
## 7570 9 0 2020-01-07
## 7571 0 0 2020-01-07
## 7572 8 0 2020-01-07
## 7573 147 10 2020-01-07
## 7574 13 2 2020-01-07
## 7575 1 0 2020-01-07
## 7576 46 1 2020-01-07
## 7577 0 0 2020-01-07
## 7578 123 11 2020-01-07
## 7579 10 1 2020-01-07
## 7580 53 19 2020-01-07
## 7581 10 0 2020-01-07
## 7582 35 2 2020-01-07
## 7583 1 0 2020-01-07
## 7584 0 0 2020-01-07
## 7585 6 1 2020-01-07
## 7586 19 2 2020-01-07
## 7587 66 2 2020-01-07
## 7588 7 0 2020-01-07
## 7589 1 0 2020-01-07
## 7590 14 3 2020-01-07
## 7591 93 2 2020-01-07
## 7592 4 3 2020-01-07
## 7593 9 0 2020-01-07
## 7594 120 8 2020-01-07
## 7595 2 0 2020-01-07
## 7596 10 0 2020-01-07
## 7597 3 0 2020-01-07
## 7598 18 0 2020-01-07
## 7599 57 15 2020-01-07
## 7600 9 6 2020-01-07
## 7601 22 1 2020-01-07
## 7602 24 0 2020-01-07
## 7603 4 1 2020-01-07
## 7604 9 5 2020-01-07
## 7605 0 0 2020-01-07
## 7606 0 0 2020-01-07
## 7607 0 0 2020-01-07
## 7608 48 2 2020-01-07
## 7609 18 5 2020-01-07
## 7610 70 5 2020-01-07
## 7611 1 0 2020-01-07
## 7612 0 0 2020-01-07
## 7613 5 0 2020-01-07
## 7614 22 1 2020-01-07
## 7615 0 0 2020-01-07
## 7616 9 2 2020-01-07
## 7617 0 0 2020-01-07
## 7618 0 0 2020-01-07
## 7619 6 1 2020-01-07
## 7620 2 0 2020-01-07
## 7621 5 1 2020-01-07
## 7622 20 3 2020-01-07
## 7623 6 4 2020-01-07
## 7624 49 2 2020-01-07
## 7625 16 2 2020-01-07
## 7626 0 0 2020-01-07
## 7627 9 1 2020-01-07
## 7628 3 0 2020-01-07
## 7629 0 0 2020-01-07
## 7630 11 0 2020-01-07
## 7631 0 0 2020-01-07
## 7632 0 0 2020-01-07
## 7633 0 0 2020-01-07
## 7634 6 0 2020-01-07
## 7635 3 0 2020-01-07
## 7636 4 0 2020-01-07
## 7637 1 0 2020-01-07
## 7638 27 3 2020-01-07
## 7639 1 0 2020-01-07
## 7640 15 8 2020-01-07
## 7641 14 4 2020-01-07
## 7642 6 3 2020-01-07
## 7643 4 2 2020-01-07
## 7644 0 0 2020-01-07
## 7645 9 0 2020-01-07
## 7646 0 0 2020-01-07
## 7647 18 1 2020-01-07
## 7648 4 0 2020-01-07
## 7649 5 0 2020-01-07
## 7650 6 0 2020-01-07
## 7651 6 2 2020-01-07
## 7652 6 0 2020-01-07
## 7653 9 0 2020-01-07
## 7654 0 0 2020-01-07
## 7655 5 0 2020-01-07
## 7656 0 0 2020-01-07
## 7657 18 1 2020-01-07
## 7658 3 1 2020-01-07
## 7659 19 0 2020-01-07
## 7660 7 0 2020-01-07
## 7661 164 3 2020-01-07
## 7662 1 0 2020-01-07
## 7663 0 0 2020-01-07
## 7664 2 0 2020-01-07
## 7665 0 0 2020-01-07
## 7666 0 0 2020-01-07
## 7667 2 0 2020-01-07
## 7668 0 0 2020-01-07
## 7669 0 0 2020-01-07
## 7670 3 0 2020-01-07
## 7671 8 0 2020-01-07
## 7672 8 3 2020-01-07
## 7673 6 0 2020-01-07
## 7674 10 0 2020-01-07
## 7675 30 3 2020-01-07
## 7676 11 1 2020-01-07
## 7677 5 0 2020-01-07
## 7678 3 1 2020-01-07
## 7679 9 0 2020-01-07
## 7680 0 0 2020-01-07
## 7681 39 5 2020-01-07
## 7682 85 13 2020-01-07
## 7683 99 0 2020-01-07
## 7684 2 0 2020-01-07
## 7685 9 0 2020-01-07
## 7686 3 2 2020-01-07
## 7687 1 0 2020-01-07
## 7688 22 2 2020-01-07
## 7689 3 0 2020-01-07
## 7690 0 0 2020-01-07
## 7691 2 0 2020-01-07
## 7692 0 0 2020-01-07
## 7693 6 1 2020-01-07
## 7694 0 0 2020-01-07
## 7695 78 3 2020-01-07
## 7696 6 1 2020-01-07
## 7697 0 0 2020-01-07
## 7698 4 0 2020-01-07
## 7699 0 0 2020-01-07
## 7700 2 0 2020-01-07
## 7701 2 0 2020-01-07
## 7702 2 0 2020-01-07
## 7703 7 2 2020-01-07
## 7704 33 2 2020-01-07
## 7705 17 0 2020-01-07
## 7706 1 0 2020-01-07
## 7707 6 1 2020-01-07
## 7708 7 1 2020-01-07
## 7709 22 1 2020-01-07
## 7710 44 2 2020-01-07
## 7711 0 0 2020-01-07
## 7712 13 3 2020-01-07
## 7713 24 3 2020-01-07
## 7714 3 0 2020-01-07
## 7715 122 15 2020-01-07
## 7716 1 0 2020-01-07
## 7717 2 0 2020-01-07
## 7718 0 0 2020-01-07
## 7719 0 1 2020-01-07
## 7720 6 1 2020-01-07
## 7721 0 0 2020-01-07
## 7722 0 0 2020-01-07
## 7723 6 1 2020-01-07
## 7724 3 1 2020-01-07
## 7725 0 0 2020-01-07
## 7726 5 1 2020-01-07
## 7727 47 2 2020-01-07
## 7728 8 0 2020-01-07
## 7729 1 0 2020-01-07
## 7730 8 1 2020-01-07
## 7731 0 0 2020-01-07
## 7732 0 0 2020-01-07
## 7733 4 0 2020-01-07
## 7734 0 0 2020-01-07
## 7735 0 0 2020-01-07
## 7736 4 0 2020-01-07
## 7737 7 0 2020-01-07
## 7738 25 0 2020-01-07
## 7739 22 1 2020-01-07
## 7740 0 1 2020-01-07
## 7741 6 0 2020-01-07
## 7742 3 1 2020-01-07
## 7743 3 0 2020-01-07
## 7744 11 1 2020-01-07
## 7745 25 2 2020-01-07
## 7746 50 2 2020-01-07
## 7747 12 2 2020-01-07
## 7748 13 0 2020-01-07
## 7749 0 0 2020-01-07
## 7750 7 1 2020-01-07
## 7751 0 0 2020-01-07
## 7752 1 1 2020-01-07
## 7753 3 0 2020-01-07
## 7754 7 0 2020-01-07
## 7755 5 0 2020-01-07
## 7756 34 1 2020-01-07
## 7757 5 1 2020-01-07
## 7758 0 0 2020-01-07
## 7759 1 0 2020-01-07
## 7760 19 3 2020-01-07
## 7761 16 4 2020-01-07
## 7762 4 0 2020-01-07
## 7763 15 2 2020-01-07
## 7764 3 0 2020-01-07
## 7765 39 4 2020-01-07
## 7766 1 0 2020-01-07
## 7767 0 0 2020-01-07
## 7768 13 1 2020-01-07
## 7769 0 0 2020-01-07
## 7770 7 2 2020-01-07
## 7771 37 2 2020-01-07
## 7772 0 0 2020-01-07
## 7773 33 6 2020-01-07
## 7774 6 0 2020-01-07
## 7775 138 4 2020-01-07
## 7776 0 0 2020-01-07
## 7777 0 0 2020-01-07
## 7778 3 2 2020-01-07
## 7779 3 0 2020-01-07
## 7780 2 0 2020-01-07
## 7781 3 0 2020-01-07
## 7782 0 0 2020-01-07
## 7783 0 0 2020-01-07
## 7784 89 8 2020-01-07
## 7785 0 0 2020-01-07
## 7786 7 0 2020-01-07
## 7787 0 0 2020-01-07
## 7788 0 0 2020-01-07
## 7789 8 0 2020-01-07
## 7790 138 4 2020-01-07
## 7791 2 1 2020-01-07
## 7792 2 0 2020-01-07
## 7793 0 0 2020-01-07
## 7794 68 10 2020-01-07
## 7795 0 0 2020-01-07
## 7796 4 1 2020-01-07
## 7797 3 0 2020-01-07
## 7798 0 0 2020-01-07
## 7799 3 0 2020-01-07
## 7800 29 1 2020-01-07
## 7801 4 0 2020-01-07
## 7802 37 2 2020-01-07
## 7803 0 0 2020-01-07
## 7804 27 1 2020-01-07
## 7805 5 0 2020-01-07
## 7806 114 15 2020-01-07
## 7807 0 0 2020-01-07
## 7808 0 0 2020-01-07
## 7809 3 0 2020-01-07
## 7810 6 1 2020-01-07
## 7811 6 4 2020-01-07
## 7812 57 0 2020-01-07
## 7813 25 2 2020-01-07
## 7814 6 1 2020-01-07
## 7815 3 0 2020-01-07
## 7816 2 0 2020-01-07
## 7817 5 0 2020-01-07
## 7818 0 0 2020-01-07
## 7819 9 0 2020-01-07
## 7820 11 1 2020-01-07
## 7821 42 18 2020-01-07
## 7822 5 0 2020-01-07
## 7823 13 1 2020-01-07
## 7824 30 5 2020-01-07
## 7825 15 1 2020-01-07
## 7826 14 1 2020-01-07
## 7827 1 0 2020-01-07
## 7828 0 0 2020-01-07
## 7829 18 0 2020-01-07
## 7830 5 0 2020-01-07
## 7831 2 0 2020-01-07
## 7832 4 0 2020-01-07
## 7833 5 1 2020-01-07
## 7834 23 0 2020-01-07
## 7835 2 0 2020-01-07
## 7836 37 3 2020-01-07
## 7837 1 0 2020-01-07
## 7838 0 0 2020-01-07
## 7839 0 0 2020-01-07
## 7840 12 0 2020-01-07
## 7841 26 5 2020-01-07
## 7842 3 0 2020-01-07
## 7843 0 0 2020-01-07
## 7844 7 0 2020-01-07
## 7845 11 0 2020-01-07
## 7846 0 0 2020-01-07
## 7847 1 0 2020-01-07
## 7848 8 1 2020-01-07
## 7849 0 0 2020-01-07
## 7850 46 8 2020-01-07
## 7851 36 4 2020-01-07
## 7852 36 3 2020-01-07
## 7853 19 3 2020-01-07
## 7854 0 0 2020-01-07
## 7855 0 0 2020-01-07
## 7856 0 0 2020-01-07
## 7857 0 0 2020-01-07
## 7858 1 0 2020-01-07
## 7859 5 0 2020-01-07
## 7860 0 0 2020-01-07
## 7861 11 1 2020-01-07
## 7862 3 0 2020-01-07
## 7863 3 0 2020-01-07
## 7864 3 0 2020-01-07
## 7865 14 3 2020-01-07
## 7866 20 2 2020-01-07
## 7867 3 0 2020-01-07
## 7868 73 8 2020-01-07
## 7869 2 0 2020-01-07
## 7870 14 0 2020-01-07
## 7871 1 0 2020-01-07
## 7872 2 0 2020-01-07
## 7873 9 0 2020-01-07
## 7874 13 1 2020-01-07
## 7875 7 0 2020-01-07
## 7876 106 12 2020-01-07
## 7877 1 0 2020-01-07
## 7878 20 3 2020-01-07
## 7879 3 0 2020-01-07
## 7880 1 0 2020-01-07
## 7881 5 0 2020-01-07
## 7882 27 0 2020-01-07
## 7883 9 0 2020-01-07
## 7884 2 0 2020-01-07
## 7885 7 0 2020-01-07
## 7886 5 2 2020-01-07
## 7887 12 2 2020-01-07
## 7888 4 0 2020-01-07
## 7889 40 2 2020-01-07
## 7890 0 0 2020-01-07
## 7891 10 1 2020-01-07
## 7892 0 0 2020-01-07
## 7893 6 1 2020-01-07
## 7894 1 3 2020-01-07
## 7895 19 1 2020-01-07
## 7896 3 1 2020-01-07
## 7897 14 2 2020-01-07
## 7898 1 0 2020-01-07
## 7899 46 4 2020-01-07
## 7900 9 0 2020-01-07
## 7901 0 0 2020-01-07
## 7902 78 15 2020-01-07
## 7903 3 0 2020-01-07
## 7904 8 3 2020-01-07
## 7905 4 0 2020-01-07
## 7906 88 3 2020-01-07
## 7907 1 0 2020-01-07
## 7908 50 2 2020-01-07
## 7909 21 2 2020-01-07
## 7910 1 0 2020-01-07
## 7911 10 2 2020-01-07
## 7912 4 0 2020-01-07
## 7913 3 0 2020-01-07
## 7914 7 1 2020-01-07
## 7915 14 0 2020-01-07
## 7916 2 0 2020-01-07
## 7917 0 0 2020-01-07
## 7918 14 1 2020-01-07
## 7919 5 0 2020-01-07
## 7920 566 256 2020-01-07
## 7921 1 0 2020-01-07
## 7922 2 0 2020-01-07
## 7923 14 0 2020-01-07
## 7924 3 0 2020-01-07
## 7925 82 1 2020-01-07
## 7926 2 1 2020-01-07
## 7927 7 3 2020-01-07
## 7928 15 2 2020-01-07
## 7929 127 13 2020-01-07
## 7930 2 0 2020-01-07
## 7931 21 2 2020-01-07
## 7932 12 1 2020-01-07
## 7933 1 1 2020-01-07
## 7934 3 0 2020-01-07
## 7935 3 3 2020-01-07
## 7936 0 0 2020-01-07
## 7937 15 1 2020-01-07
## 7938 17 2 2020-01-07
## 7939 7 0 2020-01-07
## 7940 15 1 2020-01-07
## 7941 12 0 2020-01-07
## 7942 6 2 2020-01-07
## 7943 1 0 2020-01-07
## 7944 0 0 2020-01-07
## 7945 10 5 2020-01-07
## 7946 0 0 2020-01-07
## 7947 11 6 2020-01-07
## 7948 17 0 2020-01-07
## 7949 1 0 2020-01-07
## 7950 103 5 2020-01-07
## 7951 3 4 2020-01-07
## 7952 81 0 2020-01-07
## 7953 20 24 2020-01-07
## 7954 0 0 2020-01-07
## 7955 6 0 2020-01-07
## 7956 5 0 2020-01-07
## 7957 1 0 2020-01-07
## 7958 3 0 2020-01-07
## 7959 8 4 2020-01-07
## 7960 3 1 2020-01-07
## 7961 3 1 2020-01-07
## 7962 0 0 2020-01-07
## 7963 6 1 2020-01-07
## 7964 3 1 2020-01-07
## 7965 0 0 2020-01-07
## 7966 3 0 2020-01-07
## 7967 93 8 2020-01-07
## 7968 12 0 2020-01-07
## 7969 9 1 2020-01-07
## 7970 1 0 2020-01-07
## 7971 12 4 2020-01-07
## 7972 5 1 2020-01-07
## 7973 15 3 2020-01-07
## 7974 1 0 2020-01-07
## 7975 40 3 2020-01-07
## 7976 5 0 2020-01-07
## 7977 5 0 2020-01-07
## 7978 43 2 2020-01-07
## 7979 1 0 2020-01-07
## 7980 5 2 2020-01-07
## 7981 5 3 2020-01-07
## 7982 7 1 2020-01-07
## 7983 12 1 2020-01-07
## 7984 7 1 2020-01-07
## 7985 2099 43 2020-01-07
## 7986 0 0 2020-01-07
## 7987 34 3 2020-01-07
## 7988 1 1 2020-01-07
## 7989 3 1 2020-01-07
## 7990 20 1 2020-01-07
## 7991 2 1 2020-01-07
## 7992 1 0 2020-01-07
## 7993 7 0 2020-01-07
## 7994 5 1 2020-01-07
## 7995 5 1 2020-01-07
## 7996 33 2 2020-01-07
## 7997 2 0 2020-01-07
## 7998 66 31 2020-01-07
## 7999 33 1 2020-01-07
## 8000 11 3 2020-01-07
## 8001 1 0 2020-01-07
## 8002 1 0 2020-01-07
## 8003 53 2 2020-01-07
## 8004 2 0 2020-01-07
## 8005 0 0 2020-01-07
## 8006 15 9 2020-01-07
## 8007 12 1 2020-01-07
## 8008 28 3 2020-01-07
## 8009 0 0 2020-01-07
## 8010 1 0 2020-01-07
## 8011 0 0 2020-01-07
## 8012 5 0 2020-01-07
## 8013 22 8 2020-01-07
## 8014 43 2 2020-01-07
## 8015 0 0 2020-01-07
## 8016 24 1 2020-01-07
## 8017 31 2 2020-01-07
## 8018 1 0 2020-01-07
## 8019 0 0 2020-01-07
## 8020 0 0 2020-01-07
## 8021 17 0 2020-01-07
## 8022 3 1 2020-01-07
## 8023 1 0 2020-01-07
## 8024 9 0 2020-01-07
## 8025 3 0 2020-01-07
## 8026 4 0 2020-01-07
## 8027 167 3 2020-01-07
## 8028 27 0 2020-01-07
## 8029 2 0 2020-01-07
## 8030 7 0 2020-01-07
## 8031 22 1 2020-01-07
## 8032 7 0 2020-01-07
## 8033 1 1 2020-01-07
## 8034 134 13 2020-01-07
## 8035 7 1 2020-01-07
## 8036 8 0 2020-01-07
## 8037 16 0 2020-01-07
## 8038 1 0 2020-01-07
## 8039 187 39 2020-01-07
## 8040 2 0 2020-01-07
## 8041 2 3 2020-01-07
## 8042 65 7 2020-01-07
## 8043 22 4 2020-01-07
## 8044 3 0 2020-01-07
## 8045 3 1 2020-01-07
## 8046 1 1 2020-01-07
## 8047 0 0 2020-01-07
## 8048 6 0 2020-01-07
## 8049 1 0 2020-01-07
## 8050 3 5 2020-01-07
## 8051 0 0 2020-01-07
## 8052 22 2 2020-01-07
## 8053 15 0 2020-01-07
## 8054 2 0 2020-01-07
## 8055 19 0 2020-01-07
## 8056 28 0 2020-01-07
## 8057 1 0 2020-01-07
## 8058 0 0 2020-01-07
## 8059 0 0 2020-01-07
## 8060 0 0 2020-01-07
## 8061 3 5 2020-01-07
## 8062 6 0 2020-01-07
## 8063 4 0 2020-01-07
## 8064 1 0 2020-01-07
## 8065 1 0 2020-01-07
## 8066 172 3 2020-01-07
## 8067 19 2 2020-01-07
## 8068 0 0 2020-01-07
## 8069 3 1 2020-01-07
## 8070 5 0 2020-01-07
## 8071 18 3 2020-01-07
## 8072 4 1 2020-01-07
## 8073 12 0 2020-01-07
## 8074 34 0 2020-01-07
## 8075 48 2 2020-01-07
## 8076 0 0 2020-01-07
## 8077 22 1 2020-01-07
## 8078 12 25 2020-01-07
## 8079 4 0 2020-01-07
## 8080 9 1 2020-01-07
## 8081 107 1 2020-01-07
## 8082 36 3 2020-01-07
## 8083 1 0 2020-01-07
## 8084 2 1 2020-01-07
## 8085 12 0 2020-01-07
## 8086 0 0 2020-01-07
## 8087 0 0 2020-01-07
## 8088 4 2 2020-01-07
## 8089 11 2 2020-01-07
## 8090 8 0 2020-01-07
## 8091 33 2 2020-01-07
## 8092 2 0 2020-01-07
## 8093 82 10 2020-01-07
## 8094 0 0 2020-01-07
## 8095 4 0 2020-01-07
## 8096 6 0 2020-01-07
## 8097 0 0 2020-01-07
## 8098 7 0 2020-01-07
## 8099 96 160 2020-01-07
## 8100 1 0 2020-01-07
## 8101 21 2 2020-01-07
## 8102 1 0 2020-01-07
## 8103 0 0 2020-01-07
## 8104 0 0 2020-01-07
## 8105 43 6 2020-01-07
## 8106 8 0 2020-01-07
## 8107 5 2 2020-01-07
## 8108 8 0 2020-01-07
## 8109 1 0 2020-01-07
## 8110 6 0 2020-01-07
## 8111 3 0 2020-01-07
## 8112 0 0 2020-01-07
## 8113 0 0 2020-01-07
## 8114 20 0 2020-01-07
## 8115 3 1 2020-01-07
## 8116 17 0 2020-01-07
## 8117 22 16 2020-01-07
## 8118 1 0 2020-01-07
## 8119 2 1 2020-01-07
## 8120 5 5 2020-01-07
## 8121 5 0 2020-01-07
## 8122 1 0 2020-01-07
## 8123 9 0 2020-01-07
## 8124 11 0 2020-01-07
## 8125 2 0 2020-01-07
## 8126 28 2 2020-01-07
## 8127 31 1 2020-01-07
## 8128 27 5 2020-01-07
## 8129 3 0 2020-01-07
## 8130 8 0 2020-01-07
## 8131 2 0 2020-01-07
## 8132 14 2 2020-01-07
## 8133 14 1 2020-01-07
## 8134 6 0 2020-01-07
## 8135 829 738 2020-01-07
## 8136 33 7 2020-01-07
## 8137 2 0 2020-01-07
## 8138 43 0 2020-01-07
## 8139 16 0 2020-01-07
## 8140 6 1 2020-01-07
## 8141 1 0 2020-01-07
## 8142 5 2 2020-01-07
## 8143 0 0 2020-01-07
## 8144 101 4 2020-01-07
## 8145 25 0 2020-01-07
## 8146 9 0 2020-01-07
## 8147 1 1 2020-01-07
## 8148 9 1 2020-01-07
## 8149 0 0 2020-01-07
## 8150 0 0 2020-01-07
## 8151 3 1 2020-01-07
## 8152 11 0 2020-01-07
## 8153 21 4 2020-01-07
## 8154 41 5 2020-01-07
## 8155 5 0 2020-01-07
## 8156 4 1 2020-01-07
## 8157 7 3 2020-01-07
## 8158 14 1 2020-01-07
## 8159 1 0 2020-01-07
## 8160 2 0 2020-01-07
## 8161 23 3 2020-01-07
## 8162 52 3 2020-01-07
## 8163 10 3 2020-01-07
## 8164 27 2 2020-01-07
## 8165 0 0 2020-01-07
## 8166 4 1 2020-01-07
## 8167 6 1 2020-01-07
## 8168 0 0 2020-01-07
## 8169 0 0 2020-01-07
## 8170 0 0 2020-01-07
## 8171 0 0 2020-01-07
## 8172 7 0 2020-01-07
## 8173 0 0 2020-01-07
## 8174 1 0 2020-01-07
## 8175 2 1 2020-01-07
## 8176 156 2 2020-01-07
## 8177 18 7 2020-01-07
## 8178 25 6 2020-01-07
## 8179 33 6 2020-01-07
## 8180 5 0 2020-01-07
## 8181 1 2 2020-01-07
## 8182 3 3 2020-01-07
## 8183 16 0 2020-01-07
## 8184 13 1 2020-01-07
## 8185 6 0 2020-01-07
## 8186 5 2 2020-01-07
## 8187 0 0 2020-01-07
## 8188 23 0 2020-01-07
## 8189 5 1 2020-01-07
## 8190 1 0 2020-01-07
## 8191 9 2 2020-01-07
## 8192 33 5 2020-01-07
## 8193 11 0 2020-01-07
## 8194 4 0 2020-01-07
## 8195 4 0 2020-01-07
## 8196 8 1 2020-01-07
## 8197 8 1 2020-01-07
## 8198 24 0 2020-01-07
## 8199 9 0 2020-01-07
## 8200 0 0 2020-01-07
## 8201 0 0 2020-01-07
## 8202 0 0 2020-01-07
## 8203 1 1 2020-01-07
## 8204 4 0 2020-01-07
## 8205 3 0 2020-01-07
## 8206 36 7 2020-01-07
## 8207 3 1 2020-01-07
## 8208 11 0 2020-01-07
## 8209 7 0 2020-01-07
## 8210 8 4 2020-01-07
## 8211 2 0 2020-01-07
## 8212 4 3 2020-01-07
## 8213 14 1 2020-01-07
## 8214 6 2 2020-01-07
## 8215 42 1 2020-01-07
## 8216 86 106 2020-01-07
## 8217 7 2 2020-01-07
## 8218 144 4 2020-01-07
## 8219 1 0 2020-01-07
## 8220 8 0 2020-01-07
## 8221 12 0 2020-01-07
## 8222 13 2 2020-01-07
## 8223 3 0 2020-01-07
## 8224 104 9 2020-01-07
## 8225 44 30 2020-01-07
## 8226 1 0 2020-01-07
## 8227 0 0 2020-01-07
## 8228 18 0 2020-01-07
## 8229 12 1 2020-01-07
## 8230 15 2 2020-01-07
## 8231 13 1 2020-01-07
## 8232 9 0 2020-01-07
## 8233 56 3 2020-01-07
## 8234 5 2 2020-01-07
## 8235 7 0 2020-01-07
## 8236 47 8 2020-01-07
## 8237 6 0 2020-01-07
## 8238 7 1 2020-01-07
## 8239 18 2 2020-01-07
## 8240 14 2 2020-01-07
## 8241 235 27 2020-01-07
## 8242 1 1 2020-01-07
## 8243 0 0 2020-01-07
## 8244 34 9 2020-01-07
## 8245 1 1 2020-01-07
## 8246 0 0 2020-01-07
## 8247 27 6 2020-01-07
## 8248 7 0 2020-01-07
## 8249 3 0 2020-01-07
## 8250 0 0 2020-01-07
## 8251 4 0 2020-01-07
## 8252 15 0 2020-01-07
## 8253 4 0 2020-01-07
## 8254 2 0 2020-01-07
## 8255 41 2 2020-01-07
## 8256 2 0 2020-01-07
## 8257 3 1 2020-01-07
## 8258 1 0 2020-01-07
## 8259 14 1 2020-01-07
## 8260 8 1 2020-01-07
## 8261 5 1 2020-01-07
## 8262 34 0 2020-01-07
## 8263 0 0 2020-01-07
## 8264 0 0 2020-01-07
## 8265 10 6 2020-01-07
## 8266 11 0 2020-01-07
## 8267 22 4 2020-01-07
## 8268 2 0 2020-01-07
## 8269 0 0 2020-01-07
## 8270 0 0 2020-01-07
## 8271 5 2 2020-01-07
## 8272 30 0 2020-01-07
## 8273 12 0 2020-01-07
## 8274 0 0 2020-01-07
## 8275 38 13 2020-01-07
## 8276 2 0 2020-01-07
## 8277 2 0 2020-01-07
## 8278 14 1 2020-01-07
## 8279 3 1 2020-01-07
## 8280 1 0 2020-01-07
## 8281 3 0 2020-01-07
## 8282 25 4 2020-01-07
## 8283 5 0 2020-01-07
## 8284 7 1 2020-01-07
## 8285 2 0 2020-01-07
## 8286 14 2 2020-01-07
## 8287 256 306 2020-01-07
## 8288 0 0 2020-01-07
## 8289 0 0 2020-01-07
## 8290 2 0 2020-01-07
## 8291 19 2 2020-01-07
## 8292 17 0 2020-01-07
## 8293 3 0 2020-01-07
## 8294 2 0 2020-01-07
## 8295 2 0 2020-01-07
## 8296 0 0 2020-01-07
## 8297 0 0 2020-01-07
## 8298 39 5 2020-01-07
## 8299 4 0 2020-01-07
## 8300 284 57 2020-01-07
## 8301 26 1 2020-01-07
## 8302 2 0 2020-01-07
## 8303 96 4 2020-01-07
## 8304 25 3 2020-01-07
## 8305 6 0 2020-01-07
## 8306 2 0 2020-01-07
## 8307 0 0 2020-01-07
## 8308 21 1 2020-01-07
## 8309 8 0 2020-01-07
## 8310 72 11 2020-01-07
## 8311 30 4 2020-01-07
## 8312 0 0 2020-01-07
## 8313 4 0 2020-01-07
## 8314 0 0 2020-01-07
## 8315 15 1 2020-01-07
## 8316 6 1 2020-01-07
## 8317 2 0 2020-01-07
## 8318 11 2 2020-01-07
## 8319 0 1 2020-01-07
## 8320 31 2 2020-01-07
## 8321 1 0 2020-01-07
## 8322 22 4 2020-01-07
## 8323 9 0 2020-01-07
## 8324 0 0 2020-01-07
## 8325 5 2 2020-01-07
## 8326 5 0 2020-01-07
## 8327 3 0 2020-01-07
## 8328 1 0 2020-01-07
## 8329 0 1 2020-01-07
## 8330 15 1 2020-01-07
## 8331 247 6 2020-01-07
## 8332 0 0 2020-01-07
## 8333 0 0 2020-01-07
## 8334 3 0 2020-01-07
## 8335 17 0 2020-01-07
## 8336 4 0 2020-01-07
## 8337 78 3 2020-01-07
## 8338 27 4 2020-01-07
## 8339 7 1 2020-01-07
## 8340 7 0 2020-01-07
## 8341 0 0 2020-01-07
## 8342 0 0 2020-01-07
## 8343 54 7 2020-01-07
## 8344 6 0 2020-01-07
## 8345 0 0 2020-01-07
## 8346 30 0 2020-01-07
## 8347 1 0 2020-01-07
## 8348 1 1 2020-01-07
## 8349 0 0 2020-01-07
## 8350 1 0 2020-01-07
## 8351 5 1 2020-01-07
## 8352 81 9 2020-01-07
## 8353 66 10 2020-01-07
## 8354 7 1 2020-01-07
## 8355 92 3 2020-01-07
## 8356 4 0 2020-01-07
## 8357 23 2 2020-01-07
## 8358 0 0 2020-01-07
## 8359 103 5 2020-01-08
## 8360 3 0 2020-01-08
## 8361 2 0 2020-01-08
## 8362 44 1 2020-01-08
## 8363 3 0 2020-01-08
## 8364 1 0 2020-01-08
## 8365 0 0 2020-01-08
## 8366 0 0 2020-01-08
## 8367 0 0 2020-01-08
## 8368 22 5 2020-01-08
## 8369 0 0 2020-01-08
## 8370 9 2 2020-01-08
## 8371 2 0 2020-01-08
## 8372 35 5 2020-01-08
## 8373 6 0 2020-01-08
## 8374 2 0 2020-01-08
## 8375 32 8 2020-01-08
## 8376 25 5 2020-01-08
## 8377 13 0 2020-01-08
## 8378 0 0 2020-01-08
## 8379 13 8 2020-01-08
## 8380 0 0 2020-01-08
## 8381 0 0 2020-01-08
## 8382 20 2 2020-01-08
## 8383 9 1 2020-01-08
## 8384 15 0 2020-01-08
## 8385 0 0 2020-01-08
## 8386 23 1 2020-01-08
## 8387 12 0 2020-01-08
## 8388 0 0 2020-01-08
## 8389 7 0 2020-01-08
## 8390 1 0 2020-01-08
## 8391 7 1 2020-01-08
## 8392 12 1 2020-01-08
## 8393 3 1 2020-01-08
## 8394 0 0 2020-01-08
## 8395 14 2 2020-01-08
## 8396 8 1 2020-01-08
## 8397 13 0 2020-01-08
## 8398 7 1 2020-01-08
## 8399 11 3 2020-01-08
## 8400 12 3 2020-01-08
## 8401 29 3 2020-01-08
## 8402 0 0 2020-01-08
## 8403 0 0 2020-01-08
## 8404 0 0 2020-01-08
## 8405 0 0 2020-01-08
## 8406 8 2 2020-01-08
## 8407 9 0 2020-01-08
## 8408 1 0 2020-01-08
## 8409 0 0 2020-01-08
## 8410 2 0 2020-01-08
## 8411 1 0 2020-01-08
## 8412 6 0 2020-01-08
## 8413 3 0 2020-01-08
## 8414 16 1 2020-01-08
## 8415 10 0 2020-01-08
## 8416 6 8 2020-01-08
## 8417 126 2 2020-01-08
## 8418 25 0 2020-01-08
## 8419 4 0 2020-01-08
## 8420 2 0 2020-01-08
## 8421 0 0 2020-01-08
## 8422 0 0 2020-01-08
## 8423 4 0 2020-01-08
## 8424 0 0 2020-01-08
## 8425 6 0 2020-01-08
## 8426 0 0 2020-01-08
## 8427 10 1 2020-01-08
## 8428 9 0 2020-01-08
## 8429 0 0 2020-01-08
## 8430 27 8 2020-01-08
## 8431 56 2 2020-01-08
## 8432 0 0 2020-01-08
## 8433 0 0 2020-01-08
## 8434 12 3 2020-01-08
## 8435 6 1 2020-01-08
## 8436 608 172 2020-01-08
## 8437 2 0 2020-01-08
## 8438 25 10 2020-01-08
## 8439 37 4 2020-01-08
## 8440 0 0 2020-01-08
## 8441 3 0 2020-01-08
## 8442 1 0 2020-01-08
## 8443 36 1 2020-01-08
## 8444 17 0 2020-01-08
## 8445 2 0 2020-01-08
## 8446 5 1 2020-01-08
## 8447 0 0 2020-01-08
## 8448 0 0 2020-01-08
## 8449 8 0 2020-01-08
## 8450 11 0 2020-01-08
## 8451 10 0 2020-01-08
## 8452 7 1 2020-01-08
## 8453 180 0 2020-01-08
## 8454 1 0 2020-01-08
## 8455 19 2 2020-01-08
## 8456 17 0 2020-01-08
## 8457 12 6 2020-01-08
## 8458 0 0 2020-01-08
## 8459 12 2 2020-01-08
## 8460 5 1 2020-01-08
## 8461 15 0 2020-01-08
## 8462 63 0 2020-01-08
## 8463 9 1 2020-01-08
## 8464 25 3 2020-01-08
## 8465 256 14 2020-01-08
## 8466 0 0 2020-01-08
## 8467 0 0 2020-01-08
## 8468 8 1 2020-01-08
## 8469 4 0 2020-01-08
## 8470 20 2 2020-01-08
## 8471 11 0 2020-01-08
## 8472 0 0 2020-01-08
## 8473 3 1 2020-01-08
## 8474 14 2 2020-01-08
## 8475 9 0 2020-01-08
## 8476 288 6 2020-01-08
## 8477 14 1 2020-01-08
## 8478 0 0 2020-01-08
## 8479 0 0 2020-01-08
## 8480 0 0 2020-01-08
## 8481 5 0 2020-01-08
## 8482 22 5 2020-01-08
## 8483 0 0 2020-01-08
## 8484 0 0 2020-01-08
## 8485 15 3 2020-01-08
## 8486 9 0 2020-01-08
## 8487 8 1 2020-01-08
## 8488 27 0 2020-01-08
## 8489 0 0 2020-01-08
## 8490 1 0 2020-01-08
## 8491 8 0 2020-01-08
## 8492 0 0 2020-01-08
## 8493 0 0 2020-01-08
## 8494 5 0 2020-01-08
## 8495 7 0 2020-01-08
## 8496 33 4 2020-01-08
## 8497 37 3 2020-01-08
## 8498 17 3 2020-01-08
## 8499 5 1 2020-01-08
## 8500 24 1 2020-01-08
## 8501 0 0 2020-01-08
## 8502 46 0 2020-01-08
## 8503 2 1 2020-01-08
## 8504 33 0 2020-01-08
## 8505 26 2 2020-01-08
## 8506 11 2 2020-01-08
## 8507 3 0 2020-01-08
## 8508 17 3 2020-01-08
## 8509 1 0 2020-01-08
## 8510 16 0 2020-01-08
## 8511 0 0 2020-01-08
## 8512 2 0 2020-01-08
## 8513 49 1 2020-01-08
## 8514 19 5 2020-01-08
## 8515 4 0 2020-01-08
## 8516 7 0 2020-01-08
## 8517 41 12 2020-01-08
## 8518 6 0 2020-01-08
## 8519 13 0 2020-01-08
## 8520 0 0 2020-01-08
## 8521 18 0 2020-01-08
## 8522 15 8 2020-01-08
## 8523 4 0 2020-01-08
## 8524 47 2 2020-01-08
## 8525 5 1 2020-01-08
## 8526 2 0 2020-01-08
## 8527 14 2 2020-01-08
## 8528 0 0 2020-01-08
## 8529 12 3 2020-01-08
## 8530 0 0 2020-01-08
## 8531 8 0 2020-01-08
## 8532 32 2 2020-01-08
## 8533 14 1 2020-01-08
## 8534 10 1 2020-01-08
## 8535 0 0 2020-01-08
## 8536 5 0 2020-01-08
## 8537 56 2 2020-01-08
## 8538 57 7 2020-01-08
## 8539 0 0 2020-01-08
## 8540 8 0 2020-01-08
## 8541 0 0 2020-01-08
## 8542 0 0 2020-01-08
## 8543 3 0 2020-01-08
## 8544 17 1 2020-01-08
## 8545 21 0 2020-01-08
## 8546 2 0 2020-01-08
## 8547 10 2 2020-01-08
## 8548 62 5 2020-01-08
## 8549 0 0 2020-01-08
## 8550 0 0 2020-01-08
## 8551 0 0 2020-01-08
## 8552 0 0 2020-01-08
## 8553 8 0 2020-01-08
## 8554 5310 432 2020-01-08
## 8555 34 1 2020-01-08
## 8556 62 6 2020-01-08
## 8557 2 0 2020-01-08
## 8558 26 2 2020-01-08
## 8559 43 0 2020-01-08
## 8560 8 2 2020-01-08
## 8561 12 0 2020-01-08
## 8562 84 3 2020-01-08
## 8563 36 0 2020-01-08
## 8564 7 0 2020-01-08
## 8565 12 3 2020-01-08
## 8566 0 0 2020-01-08
## 8567 0 0 2020-01-08
## 8568 0 0 2020-01-08
## 8569 10 0 2020-01-08
## 8570 176 30 2020-01-08
## 8571 18 0 2020-01-08
## 8572 29 1 2020-01-08
## 8573 18 0 2020-01-08
## 8574 0 0 2020-01-08
## 8575 3 0 2020-01-08
## 8576 3 0 2020-01-08
## 8577 18 3 2020-01-08
## 8578 13 4 2020-01-08
## 8579 43 1 2020-01-08
## 8580 53 3 2020-01-08
## 8581 4 2 2020-01-08
## 8582 1 0 2020-01-08
## 8583 0 0 2020-01-08
## 8584 2 0 2020-01-08
## 8585 5 1 2020-01-08
## 8586 0 0 2020-01-08
## 8587 16 1 2020-01-08
## 8588 0 0 2020-01-08
## 8589 16 4 2020-01-08
## 8590 26 3 2020-01-08
## 8591 0 0 2020-01-08
## 8592 0 0 2020-01-08
## 8593 70 3 2020-01-08
## 8594 7 1 2020-01-08
## 8595 7 0 2020-01-08
## 8596 1 0 2020-01-08
## 8597 26 1 2020-01-08
## 8598 24 10 2020-01-08
## 8599 0 0 2020-01-08
## 8600 79 4 2020-01-08
## 8601 65 3 2020-01-08
## 8602 6 1 2020-01-08
## 8603 32 3 2020-01-08
## 8604 24 1 2020-01-08
## 8605 71 9 2020-01-08
## 8606 0 0 2020-01-08
## 8607 81 1 2020-01-08
## 8608 16 1 2020-01-08
## 8609 0 0 2020-01-08
## 8610 0 0 2020-01-08
## 8611 88 1 2020-01-08
## 8612 1 0 2020-01-08
## 8613 79 17 2020-01-08
## 8614 27 1 2020-01-08
## 8615 4 2 2020-01-08
## 8616 20 1 2020-01-08
## 8617 45 2 2020-01-08
## 8618 1 0 2020-01-08
## 8619 4 2 2020-01-08
## 8620 36 2 2020-01-08
## 8621 9 1 2020-01-08
## 8622 0 0 2020-01-08
## 8623 36 3 2020-01-08
## 8624 57 8 2020-01-08
## 8625 1 0 2020-01-08
## 8626 47 4 2020-01-08
## 8627 7 0 2020-01-08
## 8628 9 1 2020-01-08
## 8629 62 4 2020-01-08
## 8630 28 2 2020-01-08
## 8631 1 0 2020-01-08
## 8632 5 0 2020-01-08
## 8633 6 0 2020-01-08
## 8634 0 0 2020-01-08
## 8635 19 3 2020-01-08
## 8636 1 0 2020-01-08
## 8637 45 0 2020-01-08
## 8638 45 5 2020-01-08
## 8639 1 0 2020-01-08
## 8640 2 0 2020-01-08
## 8641 20 0 2020-01-08
## 8642 23 0 2020-01-08
## 8643 0 0 2020-01-08
## 8644 39 1 2020-01-08
## 8645 0 0 2020-01-08
## 8646 0 0 2020-01-08
## 8647 6 1 2020-01-08
## 8648 3 0 2020-01-08
## 8649 11 0 2020-01-08
## 8650 3 0 2020-01-08
## 8651 210 44 2020-01-08
## 8652 75 4 2020-01-08
## 8653 32 1 2020-01-08
## 8654 159 12 2020-01-08
## 8655 7 0 2020-01-08
## 8656 10 1 2020-01-08
## 8657 17 0 2020-01-08
## 8658 12 0 2020-01-08
## 8659 3 1 2020-01-08
## 8660 0 1 2020-01-08
## 8661 2 1 2020-01-08
## 8662 0 0 2020-01-08
## 8663 7 1 2020-01-08
## 8664 9 2 2020-01-08
## 8665 2 1 2020-01-08
## 8666 7 0 2020-01-08
## 8667 7 1 2020-01-08
## 8668 0 0 2020-01-08
## 8669 0 0 2020-01-08
## 8670 1 0 2020-01-08
## 8671 0 0 2020-01-08
## 8672 11 0 2020-01-08
## 8673 43 3 2020-01-08
## 8674 2 0 2020-01-08
## 8675 1 0 2020-01-08
## 8676 1 0 2020-01-08
## 8677 5 3 2020-01-08
## 8678 0 0 2020-01-08
## 8679 71 1 2020-01-08
## 8680 0 0 2020-01-08
## 8681 0 0 2020-01-08
## 8682 2 0 2020-01-08
## 8683 41 4 2020-01-08
## 8684 0 0 2020-01-08
## 8685 11 2 2020-01-08
## 8686 1 0 2020-01-08
## 8687 21 2 2020-01-08
## 8688 1 0 2020-01-08
## 8689 1 0 2020-01-08
## 8690 5 1 2020-01-08
## 8691 98 19 2020-01-08
## 8692 36 1 2020-01-08
## 8693 0 0 2020-01-08
## 8694 0 0 2020-01-08
## 8695 27 1 2020-01-08
## 8696 1 0 2020-01-08
## 8697 3 1 2020-01-08
## 8698 5 0 2020-01-08
## 8699 8 0 2020-01-08
## 8700 1 0 2020-01-08
## 8701 0 0 2020-01-08
## 8702 0 0 2020-01-08
## 8703 0 1 2020-01-08
## 8704 2 1 2020-01-08
## 8705 18 1 2020-01-08
## 8706 3 2 2020-01-08
## 8707 0 0 2020-01-08
## 8708 0 0 2020-01-08
## 8709 1 0 2020-01-08
## 8710 0 0 2020-01-08
## 8711 0 0 2020-01-08
## 8712 8 4 2020-01-08
## 8713 8 0 2020-01-08
## 8714 12 1 2020-01-08
## 8715 0 0 2020-01-08
## 8716 2 0 2020-01-08
## 8717 0 0 2020-01-08
## 8718 0 0 2020-01-08
## 8719 12 1 2020-01-08
## 8720 1 0 2020-01-08
## 8721 0 1 2020-01-08
## 8722 21 0 2020-01-08
## 8723 5 1 2020-01-08
## 8724 276 2 2020-01-08
## 8725 1 0 2020-01-08
## 8726 1 0 2020-01-08
## 8727 14 0 2020-01-08
## 8728 0 0 2020-01-08
## 8729 4 3 2020-01-08
## 8730 0 0 2020-01-08
## 8731 0 0 2020-01-08
## 8732 0 0 2020-01-08
## 8733 0 0 2020-01-08
## 8734 1 0 2020-01-08
## 8735 0 0 2020-01-08
## 8736 4 0 2020-01-08
## 8737 54 1 2020-01-08
## 8738 1 0 2020-01-08
## 8739 22 1 2020-01-08
## 8740 0 0 2020-01-08
## 8741 0 0 2020-01-08
## 8742 0 0 2020-01-08
## 8743 3 0 2020-01-08
## 8744 0 0 2020-01-08
## 8745 69 6 2020-01-08
## 8746 40 0 2020-01-08
## 8747 0 0 2020-01-08
## 8748 0 0 2020-01-08
## 8749 14 2 2020-01-08
## 8750 149 14 2020-01-08
## 8751 2 0 2020-01-08
## 8752 1 0 2020-01-08
## 8753 1 0 2020-01-08
## 8754 0 0 2020-01-08
## 8755 8 0 2020-01-08
## 8756 0 0 2020-01-08
## 8757 35 3 2020-01-08
## 8758 0 0 2020-01-08
## 8759 177 8 2020-01-08
## 8760 3 0 2020-01-08
## 8761 1 0 2020-01-08
## 8762 96 6 2020-01-08
## 8763 4 0 2020-01-08
## 8764 1 0 2020-01-08
## 8765 90 9 2020-01-08
## 8766 6 6 2020-01-08
## 8767 31 0 2020-01-08
## 8768 0 0 2020-01-08
## 8769 2 0 2020-01-08
## 8770 247 13 2020-01-08
## 8771 2 0 2020-01-08
## 8772 0 0 2020-01-08
## 8773 112 13 2020-01-08
## 8774 5 0 2020-01-08
## 8775 51 8 2020-01-08
## 8776 1 1 2020-01-08
## 8777 52 1 2020-01-08
## 8778 49 6 2020-01-08
## 8779 0 1 2020-01-08
## 8780 0 0 2020-01-08
## 8781 0 0 2020-01-08
## 8782 1 0 2020-01-08
## 8783 0 0 2020-01-08
## 8784 1 0 2020-01-08
## 8785 27 0 2020-01-08
## 8786 0 0 2020-01-08
## 8787 9 0 2020-01-08
## 8788 1 0 2020-01-08
## 8789 10 1 2020-01-08
## 8790 11 0 2020-01-08
## 8791 0 0 2020-01-08
## 8792 0 0 2020-01-08
## 8793 2 0 2020-01-08
## 8794 127 11 2020-01-08
## 8795 1 0 2020-01-08
## 8796 1 0 2020-01-08
## 8797 37 1 2020-01-08
## 8798 1 0 2020-01-08
## 8799 4 0 2020-01-08
## 8800 5 0 2020-01-08
## 8801 1 0 2020-01-08
## 8802 3 0 2020-01-08
## 8803 19 0 2020-01-08
## 8804 12 0 2020-01-08
## 8805 2 0 2020-01-08
## 8806 4 0 2020-01-08
## 8807 7 1 2020-01-08
## 8808 1 1 2020-01-08
## 8809 1 1 2020-01-08
## 8810 2 0 2020-01-08
## 8811 15 2 2020-01-08
## 8812 112 9 2020-01-08
## 8813 0 0 2020-01-08
## 8814 47 9 2020-01-08
## 8815 0 0 2020-01-08
## 8816 6 1 2020-01-08
## 8817 1 0 2020-01-08
## 8818 0 0 2020-01-08
## 8819 0 0 2020-01-08
## 8820 8 1 2020-01-08
## 8821 7 1 2020-01-08
## 8822 152 32 2020-01-08
## 8823 0 0 2020-01-08
## 8824 1 0 2020-01-08
## 8825 6 2 2020-01-08
## 8826 7 0 2020-01-08
## 8827 1 0 2020-01-08
## 8828 0 0 2020-01-08
## 8829 0 0 2020-01-08
## 8830 5 0 2020-01-08
## 8831 0 0 2020-01-08
## 8832 30 3 2020-01-08
## 8833 7 0 2020-01-07
## 8834 1 0 2020-01-07
## 8835 0 0 2020-01-07
## 8836 1 0 2020-01-07
## 8837 2 0 2020-01-07
## 8838 0 0 2020-01-07
## 8839 1 0 2020-01-07
## 8840 168 70 2020-01-07
## 8841 10 0 2020-01-07
## 8842 30 8 2020-01-07
## 8843 7 0 2020-01-07
## 8844 0 0 2020-01-07
## 8845 20 0 2020-01-07
## 8846 8 0 2020-01-07
## 8847 1 0 2020-01-07
## 8848 8 2 2020-01-07
## 8849 13 2 2020-01-07
## 8850 12 1 2020-01-07
## 8851 2 0 2020-01-07
## 8852 25 2 2020-01-07
## 8853 1 0 2020-01-07
## 8854 641 247 2020-01-07
## 8855 0 0 2020-01-07
## 8856 46 7 2020-01-07
## 8857 11 1 2020-01-07
## 8858 1 0 2020-01-07
## 8859 29 4 2020-01-08
## 8860 5 1 2020-01-08
## 8861 6 1 2020-01-08
## 8862 2 0 2020-01-08
## 8863 5 1 2020-01-08
## 8864 20 2 2020-01-08
## 8865 0 0 2020-01-08
## 8866 87 9 2020-01-08
## 8867 17 1 2020-01-08
## 8868 21 3 2020-01-08
## 8869 1 0 2020-01-08
## 8870 141 7 2020-01-08
## 8871 0 0 2020-01-08
## 8872 9 1 2020-01-08
## 8873 1 0 2020-01-08
## 8874 1 0 2020-01-08
## 8875 4 0 2020-01-08
## 8876 11 1 2020-01-08
## 8877 1 0 2020-01-08
## 8878 2 1 2020-01-08
## 8879 56 13 2020-01-08
## 8880 6 4 2020-01-08
## 8881 0 1 2020-01-08
## 8882 0 0 2020-01-08
## 8883 8 1 2020-01-08
## 8884 41 14 2020-01-08
## 8885 18 2 2020-01-08
## 8886 7 1 2020-01-08
## 8887 7 0 2020-01-08
## 8888 7 2 2020-01-08
## 8889 46 1 2020-01-08
## 8890 5 0 2020-01-08
## 8891 6 1 2020-01-08
## 8892 6 0 2020-01-08
## 8893 5 0 2020-01-08
## 8894 5 0 2020-01-08
## 8895 5 0 2020-01-08
## 8896 0 0 2020-01-08
## 8897 0 0 2020-01-08
## 8898 51 15 2020-01-08
## 8899 7 3 2020-01-08
## 8900 110 3 2020-01-08
## 8901 10 0 2020-01-08
## 8902 10 0 2020-01-08
## 8903 3 0 2020-01-08
## 8904 10 0 2020-01-08
## 8905 1 0 2020-01-08
## 8906 12 0 2020-01-08
## 8907 18 0 2020-01-08
## 8908 2 0 2020-01-08
## 8909 2 0 2020-01-08
## 8910 0 0 2020-01-08
## 8911 21 3 2020-01-08
## 8912 13 0 2020-01-08
## 8913 2 1 2020-01-08
## 8914 1 0 2020-01-08
## 8915 0 0 2020-01-08
## 8916 0 0 2020-01-08
## 8917 3 0 2020-01-08
## 8918 0 0 2020-01-08
## 8919 5 1 2020-01-08
## 8920 6 2 2020-01-08
## 8921 4 0 2020-01-08
## 8922 94 18 2020-01-08
## 8923 3 0 2020-01-08
## 8924 6 17 2020-01-08
## 8925 9 0 2020-01-08
## 8926 3 0 2020-01-08
## 8927 47 12 2020-01-08
## 8928 44 7 2020-01-08
## 8929 13 0 2020-01-08
## 8930 2 0 2020-01-08
## 8931 0 0 2020-01-08
## 8932 0 0 2020-01-08
## 8933 11 0 2020-01-08
## 8934 8 0 2020-01-08
## 8935 7 0 2020-01-08
## 8936 0 0 2020-01-08
## 8937 10 1 2020-01-08
## 8938 19 4 2020-01-08
## 8939 5 0 2020-01-08
## 8940 2 0 2020-01-08
## 8941 2 0 2020-01-08
## 8942 0 0 2020-01-08
## 8943 2 0 2020-01-08
## 8944 10 2 2020-01-08
## 8945 4 0 2020-01-08
## 8946 13 0 2020-01-08
## 8947 9 1 2020-01-08
## 8948 2 0 2020-01-08
## 8949 1 1 2020-01-08
## 8950 35 0 2020-01-08
## 8951 16 0 2020-01-08
## 8952 7 0 2020-01-08
## 8953 8 1 2020-01-08
## 8954 8 2 2020-01-08
## 8955 9 1 2020-01-08
## 8956 13 2 2020-01-08
## 8957 27 0 2020-01-08
## 8958 1 0 2020-01-08
## 8959 10 1 2020-01-08
## 8960 0 0 2020-01-08
## 8961 4 1 2020-01-08
## 8962 19 2 2020-01-08
## 8963 11 2 2020-01-08
## 8964 16 0 2020-01-08
## 8965 1 0 2020-01-08
## 8966 6 0 2020-01-08
## 8967 34 0 2020-01-08
## 8968 4 0 2020-01-08
## 8969 25 1 2020-01-08
## 8970 10 1 2020-01-08
## 8971 7 2 2020-01-08
## 8972 42 25 2020-01-08
## 8973 8 1 2020-01-08
## 8974 4 1 2020-01-08
## 8975 0 0 2020-01-08
## 8976 0 0 2020-01-08
## 8977 12 0 2020-01-08
## 8978 1 2 2020-01-08
## 8979 3 2 2020-01-08
## 8980 2 0 2020-01-08
## 8981 63 4 2020-01-08
## 8982 10 0 2020-01-08
## 8983 10 0 2020-01-08
## 8984 1 0 2020-01-08
## 8985 11 1 2020-01-08
## 8986 0 0 2020-01-08
## 8987 0 0 2020-01-08
## 8988 224 104 2020-01-08
## 8989 0 0 2020-01-08
## 8990 0 0 2020-01-08
## 8991 138 70 2020-01-08
## 8992 70 4 2020-01-08
## 8993 62 2 2020-01-08
## 8994 17 0 2020-01-08
## 8995 36 1 2020-01-08
## 8996 196 210 2020-01-08
## 8997 9 0 2020-01-08
## 8998 3 0 2020-01-08
## 8999 26 2 2020-01-08
## 9000 0 0 2020-01-08
## 9001 101 2 2020-01-08
## 9002 52 1 2020-01-08
## 9003 12 0 2020-01-08
## 9004 0 0 2020-01-08
## 9005 1 0 2020-01-08
## 9006 10 0 2020-01-08
## 9007 7 1 2020-01-08
## 9008 7 0 2020-01-08
## 9009 12 0 2020-01-08
## 9010 48 1 2020-01-08
## 9011 0 0 2020-01-08
## 9012 2 0 2020-01-08
## 9013 7 0 2020-01-08
## 9014 5 0 2020-01-08
## 9015 0 0 2020-01-08
## 9016 4 1 2020-01-08
## 9017 6 0 2020-01-08
## 9018 74 0 2020-01-08
## 9019 21 4 2020-01-08
## 9020 31 1 2020-01-08
## 9021 12 3 2020-01-08
## 9022 3 0 2020-01-08
## 9023 10 2 2020-01-08
## 9024 6 0 2020-01-08
## 9025 17 5 2020-01-08
## 9026 8 1 2020-01-08
## 9027 15 0 2020-01-08
## 9028 0 0 2020-01-08
## 9029 3 0 2020-01-08
## 9030 4 0 2020-01-08
## 9031 0 0 2020-01-08
## 9032 109 1 2020-01-08
## 9033 6 0 2020-01-08
## 9034 47 2 2020-01-08
## 9035 5 1 2020-01-08
## 9036 8 0 2020-01-08
## 9037 11 1 2020-01-08
## 9038 2 0 2020-01-08
## 9039 0 0 2020-01-08
## 9040 4 0 2020-01-08
## 9041 22 1 2020-01-08
## 9042 29 5 2020-01-08
## 9043 0 0 2020-01-08
## 9044 33 10 2020-01-08
## 9045 118 1 2020-01-08
## 9046 46 1 2020-01-08
## 9047 48 1 2020-01-08
## 9048 3 0 2020-01-08
## 9049 1 0 2020-01-08
## 9050 2 1 2020-01-08
## 9051 9 1 2020-01-08
## 9052 14 0 2020-01-08
## 9053 0 0 2020-01-08
## 9054 6 0 2020-01-08
## 9055 12 2 2020-01-08
## 9056 4 0 2020-01-08
## 9057 5 0 2020-01-08
## 9058 4 0 2020-01-08
## 9059 24 1 2020-01-08
## 9060 7 0 2020-01-08
## 9061 19 1 2020-01-08
## 9062 12 0 2020-01-08
## 9063 6 1 2020-01-08
## 9064 8 2 2020-01-08
## 9065 8 3 2020-01-08
## 9066 1 0 2020-01-08
## 9067 4 0 2020-01-08
## 9068 18 0 2020-01-08
## 9069 2 0 2020-01-08
## 9070 4 0 2020-01-08
## 9071 0 0 2020-01-08
## 9072 1 0 2020-01-08
## 9073 0 0 2020-01-08
## 9074 11 1 2020-01-08
## 9075 12 1 2020-01-08
## 9076 17 1 2020-01-08
## 9077 5 0 2020-01-08
## 9078 0 0 2020-01-08
## 9079 15 0 2020-01-08
## 9080 2 1 2020-01-08
## 9081 0 0 2020-01-08
## 9082 7 1 2020-01-08
## 9083 0 0 2020-01-08
## 9084 14 2 2020-01-08
## 9085 0 0 2020-01-08
## 9086 1 0 2020-01-08
## 9087 3 0 2020-01-08
## 9088 151 8 2020-01-08
## 9089 33 7 2020-01-08
## 9090 5 1 2020-01-08
## 9091 6 1 2020-01-08
## 9092 61 0 2020-01-08
## 9093 13 1 2020-01-08
## 9094 12 1 2020-01-08
## 9095 4 0 2020-01-08
## 9096 2 0 2020-01-08
## 9097 5 0 2020-01-08
## 9098 23 3 2020-01-08
## 9099 13 2 2020-01-08
## 9100 43 4 2020-01-08
## 9101 11 0 2020-01-08
## 9102 1 0 2020-01-08
## 9103 0 0 2020-01-08
## 9104 5 0 2020-01-08
## 9105 30 1 2020-01-08
## 9106 0 0 2020-01-08
## 9107 10 0 2020-01-08
## 9108 0 0 2020-01-08
## 9109 9 0 2020-01-08
## 9110 3 0 2020-01-08
## 9111 109 22 2020-01-08
## 9112 69 4 2020-01-08
## 9113 959 11 2020-01-08
## 9114 12 1 2020-01-08
## 9115 2 2 2020-01-08
## 9116 3 0 2020-01-08
## 9117 5 0 2020-01-08
## 9118 80 1 2020-01-08
## 9119 0 0 2020-01-08
## 9120 0 0 2020-01-08
## 9121 0 0 2020-01-08
## 9122 17 5 2020-01-08
## 9123 7 2 2020-01-08
## 9124 0 0 2020-01-08
## 9125 11 0 2020-01-08
## 9126 0 0 2020-01-08
## 9127 46 3 2020-01-08
## 9128 0 0 2020-01-08
## 9129 129 3 2020-01-08
## 9130 18 2 2020-01-08
## 9131 0 0 2020-01-08
## 9132 0 0 2020-01-08
## 9133 5 4 2020-01-08
## 9134 0 0 2020-01-08
## 9135 0 0 2020-01-08
## 9136 3 0 2020-01-08
## 9137 5 0 2020-01-08
## 9138 0 0 2020-01-08
## 9139 18 0 2020-01-08
## 9140 16 0 2020-01-08
## 9141 405 38 2020-01-08
## 9142 20 5 2020-01-08
## 9143 0 0 2020-01-08
## 9144 356 151 2020-01-08
## 9145 0 0 2020-01-08
## 9146 2 0 2020-01-08
## 9147 9 1 2020-01-08
## 9148 0 0 2020-01-08
## 9149 0 0 2020-01-08
## 9150 6 2 2020-01-08
## 9151 2 0 2020-01-08
## 9152 35 3 2020-01-08
## 9153 2 1 2020-01-08
## 9154 2 0 2020-01-08
## 9155 5 1 2020-01-08
## 9156 1 0 2020-01-08
## 9157 3 0 2020-01-08
## 9158 2 0 2020-01-08
## 9159 11 1 2020-01-08
## 9160 8 4 2020-01-08
## 9161 0 0 2020-01-08
## 9162 39 5 2020-01-08
## 9163 0 0 2020-01-08
## 9164 2 1 2020-01-08
## 9165 0 0 2020-01-08
## 9166 0 0 2020-01-08
## 9167 6 0 2020-01-08
## 9168 3 0 2020-01-08
## 9169 0 0 2020-01-08
## 9170 8 0 2020-01-08
## 9171 22 2 2020-01-08
## 9172 26 1 2020-01-08
## 9173 6 1 2020-01-08
## 9174 71 1 2020-01-08
## 9175 1 1 2020-01-08
## 9176 3 2 2020-01-08
## 9177 17 0 2020-01-08
## 9178 5 0 2020-01-08
## 9179 0 0 2020-01-08
## 9180 10 2 2020-01-08
## 9181 11 1 2020-01-08
## 9182 14 0 2020-01-08
## 9183 64 7 2020-01-08
## 9184 62 2 2020-01-08
## 9185 7 1 2020-01-08
## 9186 25 1 2020-01-08
## 9187 11 0 2020-01-08
## 9188 3 1 2020-01-08
## 9189 24 1 2020-01-08
## 9190 8 0 2020-01-08
## 9191 1 0 2020-01-08
## 9192 0 0 2020-01-08
## 9193 3 1 2020-01-08
## 9194 18 0 2020-01-08
## 9195 0 0 2020-01-08
## 9196 11 0 2020-01-08
## 9197 52 6 2020-01-08
## 9198 15 4 2020-01-08
## 9199 24 3 2020-01-08
## 9200 9 0 2020-01-08
## 9201 1 0 2020-01-08
## 9202 40 3 2020-01-08
## 9203 5 0 2020-01-08
## 9204 18 1 2020-01-08
## 9205 299 1 2020-01-08
## 9206 2 0 2020-01-08
## 9207 6 0 2020-01-08
## 9208 21 2 2020-01-08
## 9209 13 7 2020-01-08
## 9210 2 0 2020-01-08
## 9211 66 10 2020-01-08
## 9212 12 1 2020-01-08
## 9213 6 1 2020-01-08
## 9214 23 3 2020-01-08
## 9215 0 0 2020-01-08
## 9216 0 0 2020-01-08
## 9217 0 0 2020-01-08
## 9218 17 3 2020-01-08
## 9219 3 0 2020-01-08
## 9220 11 0 2020-01-08
## 9221 4 4 2020-01-08
## 9222 6 0 2020-01-08
## 9223 12 1 2020-01-08
## 9224 5 0 2020-01-08
## 9225 32 2 2020-01-08
## 9226 20 8 2020-01-08
## 9227 23 3 2020-01-08
## 9228 43 3 2020-01-08
## 9229 3 0 2020-01-08
## 9230 8 0 2020-01-08
## 9231 10 1 2020-01-08
## 9232 224 19 2020-01-08
## 9233 3 0 2020-01-08
## 9234 0 0 2020-01-08
## 9235 2862 562 2020-01-08
## 9236 71 3 2020-01-08
## 9237 0 0 2020-01-08
## 9238 9 6 2020-01-08
## 9239 6 1 2020-01-08
## 9240 20 8 2020-01-08
## 9241 14 3 2020-01-08
## 9242 0 0 2020-01-08
## 9243 2 2 2020-01-08
## 9244 9 0 2020-01-08
## 9245 1 1 2020-01-08
## 9246 0 0 2020-01-08
## 9247 21 1 2020-01-08
## 9248 1 3 2020-01-08
## 9249 0 0 2020-01-08
## 9250 0 0 2020-01-08
## 9251 0 0 2020-01-08
## 9252 1 0 2020-01-08
## 9253 2 2 2020-01-08
## 9254 0 0 2020-01-08
## 9255 11 0 2020-01-08
## 9256 2 0 2020-01-08
## 9257 0 0 2020-01-08
## 9258 0 0 2020-01-08
## 9259 8 0 2020-01-08
## 9260 0 0 2020-01-08
## 9261 54 9 2020-01-08
## 9262 5 0 2020-01-08
## 9263 88 4 2020-01-08
## 9264 5 0 2020-01-08
## 9265 0 0 2020-01-08
## 9266 0 0 2020-01-08
## 9267 1 0 2020-01-08
## 9268 0 0 2020-01-08
## 9269 0 0 2020-01-08
## 9270 4 0 2020-01-08
## 9271 0 0 2020-01-08
## 9272 3 1 2020-01-08
## 9273 0 0 2020-01-08
## 9274 0 0 2020-01-08
## 9275 19 0 2020-01-08
## 9276 1 0 2020-01-08
## 9277 0 0 2020-01-08
## 9278 2 1 2020-01-08
## 9279 3 1 2020-01-08
## 9280 15 0 2020-01-08
## 9281 1861 28 2020-01-08
## 9282 0 0 2020-01-08
## 9283 33 1 2020-01-08
## 9284 1 1 2020-01-08
## 9285 1 0 2020-01-08
## 9286 7 0 2020-01-08
## 9287 0 0 2020-01-08
## 9288 0 0 2020-01-08
## 9289 1 0 2020-01-08
## 9290 5 0 2020-01-08
## 9291 9 0 2020-01-08
## 9292 44 0 2020-01-08
## 9293 15 1 2020-01-08
## 9294 10 1 2020-01-08
## 9295 32 4 2020-01-08
## 9296 11 1 2020-01-08
## 9297 3 0 2020-01-08
## 9298 3 0 2020-01-08
## 9299 3 0 2020-01-08
## 9300 2 0 2020-01-08
## 9301 67 5 2020-01-08
## 9302 10 0 2020-01-08
## 9303 1 0 2020-01-08
## 9304 3 2 2020-01-08
## 9305 19 2 2020-01-08
## 9306 0 0 2020-01-08
## 9307 2 0 2020-01-08
## 9308 6 0 2020-01-08
## 9309 7 1 2020-01-08
## 9310 175 30 2020-01-08
## 9311 51 10 2020-01-08
## 9312 5 0 2020-01-08
## 9313 4 0 2020-01-08
## 9314 89 1 2020-01-08
## 9315 32 6 2020-01-08
## 9316 14 2 2020-01-08
## 9317 10 0 2020-01-08
## 9318 0 0 2020-01-08
## 9319 0 0 2020-01-08
## 9320 8 1 2020-01-08
## 9321 0 0 2020-01-08
## 9322 4 1 2020-01-08
## 9323 8 1 2020-01-08
## 9324 124 8 2020-01-08
## 9325 0 0 2020-01-08
## 9326 3 1 2020-01-08
## 9327 0 0 2020-01-08
## 9328 2 0 2020-01-08
## 9329 0 0 2020-01-08
## 9330 6 2 2020-01-08
## 9331 11 0 2020-01-08
## 9332 63 2 2020-01-08
## 9333 5 0 2020-01-08
## 9334 6 2 2020-01-08
## 9335 3 1 2020-01-08
## 9336 0 0 2020-01-08
## 9337 5 2 2020-01-08
## 9338 5 0 2020-01-08
## 9339 3 1 2020-01-08
## 9340 0 0 2020-01-08
## 9341 3 0 2020-01-08
## 9342 139 15 2020-01-08
## 9343 15 5 2020-01-08
## 9344 24 2 2020-01-08
## 9345 25 2 2020-01-08
## 9346 9 0 2020-01-08
## 9347 2 2 2020-01-08
## 9348 6 1 2020-01-08
## 9349 0 0 2020-01-08
## 9350 0 0 2020-01-08
## 9351 26 0 2020-01-08
## 9352 20 2 2020-01-08
## 9353 15 1 2020-01-08
## 9354 4 0 2020-01-08
## 9355 20 2 2020-01-08
## 9356 683 64 2020-01-08
## 9357 51 6 2020-01-08
## 9358 7 3 2020-01-08
## 9359 0 0 2020-01-08
## 9360 45 5 2020-01-08
## 9361 26 3 2020-01-08
## 9362 1 0 2020-01-08
## 9363 0 1 2020-01-08
## 9364 6 0 2020-01-08
## 9365 6 1 2020-01-08
## 9366 4 1 2020-01-08
## 9367 39 2 2020-01-08
## 9368 5 0 2020-01-08
## 9369 11 0 2020-01-08
## 9370 15 3 2020-01-08
## 9371 9 1 2020-01-08
## 9372 19 3 2020-01-08
## 9373 2 0 2020-01-08
## 9374 0 0 2020-01-08
## 9375 5 2 2020-01-08
## 9376 3 0 2020-01-08
## 9377 2 0 2020-01-08
## 9378 3 1 2020-01-08
## 9379 4 0 2020-01-08
## 9380 20 4 2020-01-08
## 9381 8 1 2020-01-08
## 9382 11 1 2020-01-08
## 9383 3 2 2020-01-08
## 9384 41 3 2020-01-08
## 9385 26 2 2020-01-08
## 9386 36 0 2020-01-08
## 9387 7 0 2020-01-08
## 9388 8 0 2020-01-08
## 9389 7 0 2020-01-08
## 9390 121 32 2020-01-08
## 9391 19 0 2020-01-08
## 9392 9 0 2020-01-08
## 9393 6 0 2020-01-08
## 9394 3 0 2020-01-08
## 9395 4 4 2020-01-08
## 9396 1 0 2020-01-08
## 9397 33 1 2020-01-08
## 9398 8 1 2020-01-08
## 9399 10 0 2020-01-08
## 9400 78 4 2020-01-08
## 9401 7 0 2020-01-08
## 9402 0 0 2020-01-08
## 9403 53 10 2020-01-08
## 9404 10 2 2020-01-08
## 9405 9 0 2020-01-08
## 9406 0 0 2020-01-08
## 9407 21 4 2020-01-08
## 9408 6 2 2020-01-08
## 9409 20 0 2020-01-08
## 9410 4 0 2020-01-08
## 9411 1 0 2020-01-08
## 9412 0 0 2020-01-08
## 9413 7 4 2020-01-08
## 9414 435 68 2020-01-08
## 9415 4 0 2020-01-08
## 9416 3 0 2020-01-08
## 9417 3 0 2020-01-08
## 9418 6 0 2020-01-08
## 9419 7 0 2020-01-08
## 9420 0 0 2020-01-08
## 9421 5 0 2020-01-08
## 9422 50 1 2020-01-08
## 9423 0 0 2020-01-08
## 9424 39 3 2020-01-08
## 9425 16 2 2020-01-08
## 9426 26 0 2020-01-08
## 9427 45 7 2020-01-08
## 9428 16 1 2020-01-08
## 9429 7 0 2020-01-08
## 9430 1 0 2020-01-08
## 9431 5 0 2020-01-08
## 9432 0 0 2020-01-08
## 9433 12 0 2020-01-08
## 9434 5 0 2020-01-08
## 9435 12 0 2020-01-08
## 9436 7 0 2020-01-08
## 9437 82 4 2020-01-08
## 9438 3 0 2020-01-08
## 9439 3 0 2020-01-08
## 9440 0 0 2020-01-08
## 9441 0 0 2020-01-08
## 9442 3 0 2020-01-08
## 9443 87 47 2020-01-08
## 9444 3 2 2020-01-08
## 9445 2 0 2020-01-08
## 9446 2 1 2020-01-08
## 9447 0 0 2020-01-08
## 9448 6 0 2020-01-08
## 9449 15 1 2020-01-08
## 9450 37 11 2020-01-08
## 9451 5 0 2020-01-08
## 9452 1 0 2020-01-08
## 9453 140 1 2020-01-08
## 9454 6 0 2020-01-08
## 9455 4 1 2020-01-08
## 9456 0 0 2020-01-08
## 9457 10 6 2020-01-08
## 9458 5 0 2020-01-08
## 9459 0 0 2020-01-08
## 9460 1 0 2020-01-08
## 9461 6 2 2020-01-08
## 9462 115 21 2020-01-08
## 9463 6 0 2020-01-08
## 9464 8 2 2020-01-08
## 9465 7 0 2020-01-08
## 9466 0 0 2020-01-08
## 9467 2 5 2020-01-08
## 9468 80 2 2020-01-08
## 9469 0 0 2020-01-08
## 9470 0 0 2020-01-08
## 9471 7 0 2020-01-08
## 9472 0 0 2020-01-08
## 9473 6 1 2020-01-08
## 9474 3 3 2020-01-08
## 9475 9 0 2020-01-08
## 9476 10 0 2020-01-08
## 9477 186 76 2020-01-08
## 9478 4 1 2020-01-08
## 9479 1 0 2020-01-08
## 9480 0 0 2020-01-08
## 9481 0 0 2020-01-08
## 9482 0 0 2020-01-08
## 9483 3 0 2020-01-08
## 9484 3 1 2020-01-08
## 9485 9 3 2020-01-08
## 9486 18 1 2020-01-08
## 9487 25 1 2020-01-08
## 9488 7 0 2020-01-08
## 9489 0 0 2020-01-08
## 9490 7 0 2020-01-08
## 9491 20 2 2020-01-08
## 9492 8 1 2020-01-08
## 9493 0 0 2020-01-08
## 9494 4 0 2020-01-08
## 9495 1 0 2020-01-08
## 9496 23 1 2020-01-08
## 9497 14 1 2020-01-08
## 9498 4 0 2020-01-08
## 9499 2 0 2020-01-08
## 9500 1003 6 2020-01-08
## 9501 3 0 2020-01-08
## 9502 0 0 2020-01-08
## 9503 0 0 2020-01-08
## 9504 11 0 2020-01-08
## 9505 4 0 2020-01-08
## 9506 2 3 2020-01-08
## 9507 3 0 2020-01-08
## 9508 0 0 2020-01-08
## 9509 1 0 2020-01-08
## 9510 24 1 2020-01-08
## 9511 2 0 2020-01-08
## 9512 0 0 2020-01-08
## 9513 21 24 2020-01-08
## 9514 62 1 2020-01-08
## 9515 42 0 2020-01-08
## 9516 12 0 2020-01-08
## 9517 6 1 2020-01-08
## 9518 176 5 2020-01-08
## 9519 4 0 2020-01-08
## 9520 1 0 2020-01-08
## 9521 1 1 2020-01-08
## 9522 108 0 2020-01-08
## 9523 5 0 2020-01-08
## 9524 4 0 2020-01-08
## 9525 50 1 2020-01-08
## 9526 0 0 2020-01-08
## 9527 22 2 2020-01-08
## 9528 154 30 2020-01-08
## 9529 0 0 2020-01-08
## 9530 0 0 2020-01-08
## 9531 6 0 2020-01-08
## 9532 11 5 2020-01-08
## 9533 6 0 2020-01-08
## 9534 21 2 2020-01-08
## 9535 52 0 2020-01-08
## 9536 8 3 2020-01-08
## 9537 0 2 2020-01-08
## 9538 12 2 2020-01-08
## 9539 0 0 2020-01-08
## 9540 5 0 2020-01-08
## 9541 6 0 2020-01-08
## 9542 45 1 2020-01-08
## 9543 22 3 2020-01-08
## 9544 2 0 2020-01-08
## 9545 15 5 2020-01-08
## 9546 45 4 2020-01-08
## 9547 8 1 2020-01-08
## 9548 0 0 2020-01-08
## 9549 6 4 2020-01-08
## 9550 50 5 2020-01-08
## 9551 109 31 2020-01-08
## 9552 0 0 2020-01-08
## 9553 3 0 2020-01-08
## 9554 8 1 2020-01-08
## 9555 15 4 2020-01-08
## 9556 0 0 2020-01-08
## 9557 7 0 2020-01-08
## 9558 9 0 2020-01-08
## 9559 5 0 2020-01-08
## 9560 6 0 2020-01-08
## 9561 28 0 2020-01-08
## 9562 0 1 2020-01-08
## 9563 17 0 2020-01-08
## 9564 0 0 2020-01-08
## 9565 0 0 2020-01-08
## 9566 0 0 2020-01-08
## 9567 0 0 2020-01-08
## 9568 0 0 2020-01-08
## 9569 0 0 2020-01-08
## 9570 53 9 2020-01-08
## 9571 6 4 2020-01-08
## 9572 15 3 2020-01-08
## 9573 121 11 2020-01-08
## 9574 7 1 2020-01-08
## 9575 5 2 2020-01-08
## 9576 0 0 2020-01-08
## 9577 0 0 2020-01-08
## 9578 4 1 2020-01-08
## 9579 12 1 2020-01-08
## 9580 7 0 2020-01-08
## 9581 18 0 2020-01-08
## 9582 3 0 2020-01-08
## 9583 5 0 2020-01-08
## 9584 9 0 2020-01-08
## 9585 5 0 2020-01-08
## 9586 9 0 2020-01-08
## 9587 31 4 2020-01-08
## 9588 17 3 2020-01-08
## 9589 34 1 2020-01-08
## 9590 27 3 2020-01-08
## 9591 7 1 2020-01-08
## 9592 5 0 2020-01-08
## 9593 0 0 2020-01-08
## 9594 25 2 2020-01-08
## 9595 2 0 2020-01-08
## 9596 1 0 2020-01-08
## 9597 28 1 2020-01-08
## 9598 26 9 2020-01-08
## 9599 7 0 2020-01-08
## 9600 9 0 2020-01-08
## 9601 5 0 2020-01-08
## 9602 53 1 2020-01-08
## 9603 20 3 2020-01-08
## 9604 0 0 2020-01-08
## 9605 15 0 2020-01-08
## 9606 0 0 2020-01-08
## 9607 1 0 2020-01-08
## 9608 6 0 2020-01-08
## 9609 10 2 2020-01-08
## 9610 10 0 2020-01-08
## 9611 24 3 2020-01-08
## 9612 8 1 2020-01-08
## 9613 2 1 2020-01-08
## 9614 164 3 2020-01-08
## 9615 23 2 2020-01-08
## 9616 6 2 2020-01-08
## 9617 5 1 2020-01-08
## 9618 7 1 2020-01-08
## 9619 9 1 2020-01-08
## 9620 10 1 2020-01-08
## 9621 107 14 2020-01-08
## 9622 0 0 2020-01-08
## 9623 1416 360 2020-01-08
## 9624 226 3 2020-01-08
## 9625 5 1 2020-01-08
## 9626 8 0 2020-01-08
## 9627 35 2 2020-01-08
## 9628 1 0 2020-01-08
## 9629 9 1 2020-01-08
## 9630 11 0 2020-01-08
## 9631 13 0 2020-01-08
## 9632 20 0 2020-01-08
## 9633 8 1 2020-01-08
## 9634 8 0 2020-01-08
## 9635 52 21 2020-01-08
## 9636 77 27 2020-01-08
## 9637 3 0 2020-01-08
## 9638 4 0 2020-01-08
## 9639 12 1 2020-01-08
## 9640 16 1 2020-01-08
## 9641 3 0 2020-01-08
## 9642 86 22 2020-01-08
## 9643 15 0 2020-01-08
## 9644 95 28 2020-01-08
## 9645 3 1 2020-01-08
## 9646 41 1 2020-01-08
## 9647 0 0 2020-01-08
## 9648 1 0 2020-01-08
## 9649 4 0 2020-01-08
## 9650 12 2 2020-01-08
## 9651 4 2 2020-01-08
## 9652 2 0 2020-01-08
## 9653 0 0 2020-01-08
## 9654 0 0 2020-01-08
## 9655 5 0 2020-01-08
## 9656 31 2 2020-01-08
## 9657 6 1 2020-01-08
## 9658 6 0 2020-01-08
## 9659 36 0 2020-01-08
## 9660 43 1 2020-01-08
## 9661 7 0 2020-01-08
## 9662 0 0 2020-01-08
## 9663 71 9 2020-01-08
## 9664 9 0 2020-01-08
## 9665 11 1 2020-01-08
## 9666 10 3 2020-01-08
## 9667 17 0 2020-01-08
## 9668 3 3 2020-01-08
## 9669 25 4 2020-01-08
## 9670 27 0 2020-01-08
## 9671 14 0 2020-01-08
## 9672 1 0 2020-01-08
## 9673 42 2 2020-01-08
## 9674 14 2 2020-01-08
## 9675 8 1 2020-01-08
## 9676 1 0 2020-01-08
## 9677 1 0 2020-01-08
## 9678 2 1 2020-01-08
## 9679 5 2 2020-01-08
## 9680 14 1 2020-01-08
## 9681 243 17 2020-01-08
## 9682 4 0 2020-01-08
## 9683 4 0 2020-01-08
## 9684 7 0 2020-01-08
## 9685 8 0 2020-01-08
## 9686 15 4 2020-01-08
## 9687 1 0 2020-01-08
## 9688 0 0 2020-01-08
## 9689 14 0 2020-01-08
## 9690 6 0 2020-01-08
## 9691 8 0 2020-01-08
## 9692 4 0 2020-01-08
## 9693 5 0 2020-01-08
## 9694 64 2 2020-01-08
## 9695 0 0 2020-01-08
## 9696 14 1 2020-01-08
## 9697 4 0 2020-01-08
## 9698 16 0 2020-01-08
## 9699 4 0 2020-01-08
## 9700 12 2 2020-01-08
## 9701 3 0 2020-01-08
## 9702 8 3 2020-01-08
## 9703 3 0 2020-01-08
## 9704 23 3 2020-01-08
## 9705 32 7 2020-01-08
## 9706 0 0 2020-01-08
## 9707 54 6 2020-01-08
## 9708 0 0 2020-01-08
## 9709 0 0 2020-01-08
## 9710 1 0 2020-01-08
## 9711 0 0 2020-01-08
## 9712 0 0 2020-01-08
## 9713 7 0 2020-01-08
## 9714 0 0 2020-01-08
## 9715 0 0 2020-01-08
## 9716 0 0 2020-01-08
## 9717 22 4 2020-01-08
## 9718 16 1 2020-01-08
## 9719 0 0 2020-01-08
## 9720 0 0 2020-01-08
## 9721 0 0 2020-01-08
## 9722 57 15 2020-01-08
## 9723 34 2 2020-01-08
## 9724 4 0 2020-01-08
## 9725 9 0 2020-01-08
## 9726 1 0 2020-01-08
## 9727 5 1 2020-01-08
## 9728 183 16 2020-01-08
## 9729 7 2 2020-01-08
## 9730 51 7 2020-01-08
## 9731 8 2 2020-01-08
## 9732 1 0 2020-01-08
## 9733 40 4 2020-01-08
## 9734 10 0 2020-01-08
## 9735 4 0 2020-01-08
## 9736 18 2 2020-01-08
## 9737 3 0 2020-01-08
## 9738 23 0 2020-01-08
## 9739 4 0 2020-01-08
## 9740 15 1 2020-01-08
## 9741 13 3 2020-01-08
## 9742 0 0 2020-01-08
## 9743 143 20 2020-01-08
## 9744 20 4 2020-01-08
## 9745 20 4 2020-01-08
## 9746 3 0 2020-01-08
## 9747 0 0 2020-01-08
## 9748 15 1 2020-01-08
## 9749 0 0 2020-01-08
## 9750 3 1 2020-01-08
## 9751 1 2 2020-01-08
## 9752 70 1 2020-01-08
## 9753 7 1 2020-01-08
## 9754 10 6 2020-01-08
## 9755 380 2 2020-01-08
## 9756 1 0 2020-01-08
## 9757 0 0 2020-01-08
## 9758 8 0 2020-01-08
## 9759 20 2 2020-01-08
## 9760 60 4 2020-01-08
## 9761 3 0 2020-01-08
## 9762 19 2 2020-01-08
## 9763 7 1 2020-01-08
## 9764 3 2 2020-01-08
## 9765 20 0 2020-01-08
## 9766 25 1 2020-01-08
## 9767 0 0 2020-01-08
## 9768 2 1 2020-01-08
## 9769 0 0 2020-01-08
## 9770 3 0 2020-01-08
## 9771 3 1 2020-01-08
## 9772 48 3 2020-01-08
## 9773 2 1 2020-01-08
## 9774 6 0 2020-01-08
## 9775 6 1 2020-01-08
## 9776 5 0 2020-01-08
## 9777 7 0 2020-01-08
## 9778 20 3 2020-01-08
## 9779 14 1 2020-01-08
## 9780 0 0 2020-01-08
## 9781 1 0 2020-01-08
## 9782 0 0 2020-01-08
## 9783 0 0 2020-01-08
## 9784 7 0 2020-01-08
## 9785 5 1 2020-01-08
## 9786 5 0 2020-01-08
## 9787 88 1 2020-01-08
## 9788 72 4 2020-01-08
## 9789 24 3 2020-01-08
## 9790 0 0 2020-01-08
## 9791 0 0 2020-01-08
## 9792 0 0 2020-01-08
## 9793 0 0 2020-01-08
## 9794 6 4 2020-01-08
## 9795 1 0 2020-01-08
## 9796 72 6 2020-01-08
## 9797 0 0 2020-01-08
## 9798 10 0 2020-01-08
## 9799 4 1 2020-01-08
## 9800 22 1 2020-01-08
## 9801 8 1 2020-01-08
## 9802 13 2 2020-01-08
## 9803 22 7 2020-01-08
## 9804 55 6 2020-01-08
## 9805 0 0 2020-01-08
## 9806 0 0 2020-01-08
## 9807 47 11 2020-01-08
## 9808 1 0 2020-01-08
## 9809 2 0 2020-01-08
## 9810 12 27 2020-01-08
## 9811 2 0 2020-01-08
## 9812 0 0 2020-01-08
## 9813 0 0 2020-01-08
## 9814 8 0 2020-01-08
## 9815 6 0 2020-01-08
## 9816 57 6 2020-01-08
## 9817 124 3 2020-01-08
## 9818 32 4 2020-01-08
## 9819 5 1 2020-01-08
## 9820 3 0 2020-01-08
## 9821 1 0 2020-01-08
## 9822 8 2 2020-01-08
## 9823 27 3 2020-01-08
## 9824 8 1 2020-01-08
## 9825 4 1 2020-01-08
## 9826 38 4 2020-01-08
## 9827 2 0 2020-01-08
## 9828 4 0 2020-01-08
## 9829 0 0 2020-01-08
## 9830 15 1 2020-01-08
## 9831 8 1 2020-01-08
## 9832 18 1 2020-01-08
## 9833 88 4 2020-01-08
## 9834 16 1 2020-01-08
## 9835 0 0 2020-01-08
## 9836 3 4 2020-01-08
## 9837 3 1 2020-01-08
## 9838 86 7 2020-01-08
## 9839 1 0 2020-01-08
## 9840 29 0 2020-01-08
## 9841 0 0 2020-01-08
## 9842 3 0 2020-01-08
## 9843 2 0 2020-01-08
## 9844 3 0 2020-01-08
## 9845 0 0 2020-01-08
## 9846 15 4 2020-01-08
## 9847 0 0 2020-01-08
## 9848 8 1 2020-01-08
## 9849 3 0 2020-01-08
## 9850 9 0 2020-01-08
## 9851 14 3 2020-01-08
## 9852 2 1 2020-01-08
## 9853 3 1 2020-01-08
## 9854 32 2 2020-01-08
## 9855 2 0 2020-01-08
## 9856 1 0 2020-01-08
## 9857 11 6 2020-01-08
## 9858 6 1 2020-01-08
## 9859 12 1 2020-01-09
## 9860 4 0 2020-01-09
## 9861 0 0 2020-01-09
## 9862 26 4 2020-01-09
## 9863 0 0 2020-01-09
## 9864 13 1 2020-01-09
## 9865 0 0 2020-01-09
## 9866 84 1 2020-01-09
## 9867 18 3 2020-01-09
## 9868 0 0 2020-01-09
## 9869 0 0 2020-01-09
## 9870 0 0 2020-01-09
## 9871 0 0 2020-01-09
## 9872 20 1 2020-01-09
## 9873 15 1 2020-01-09
## 9874 0 0 2020-01-09
## 9875 0 0 2020-01-09
## 9876 4 0 2020-01-09
## 9877 6 0 2020-01-09
## 9878 169 8 2020-01-09
## 9879 38 11 2020-01-09
## 9880 20 9 2020-01-09
## 9881 0 0 2020-01-09
## 9882 31 3 2020-01-09
## 9883 14 2 2020-01-09
## 9884 4 1 2020-01-09
## 9885 0 0 2020-01-09
## 9886 2 2 2020-01-09
## 9887 9 0 2020-01-09
## 9888 16 0 2020-01-09
## 9889 2 0 2020-01-09
## 9890 2 0 2020-01-09
## 9891 0 0 2020-01-09
## 9892 10 2 2020-01-09
## 9893 47 8 2020-01-09
## 9894 12 1 2020-01-09
## 9895 11 1 2020-01-09
## 9896 23 2 2020-01-09
## 9897 40 6 2020-01-09
## 9898 2 2 2020-01-09
## 9899 0 0 2020-01-09
## 9900 6 0 2020-01-09
## 9901 3 1 2020-01-09
## 9902 11 0 2020-01-09
## 9903 0 0 2020-01-09
## 9904 84 4 2020-01-09
## 9905 0 0 2020-01-09
## 9906 0 0 2020-01-09
## 9907 10 4 2020-01-09
## 9908 5 0 2020-01-09
## 9909 32 2 2020-01-09
## 9910 4 0 2020-01-09
## 9911 48 1 2020-01-09
## 9912 0 0 2020-01-09
## 9913 793 1674 2020-01-09
## 9914 3 0 2020-01-09
## 9915 14 1 2020-01-09
## 9916 4 0 2020-01-09
## 9917 24 5 2020-01-09
## 9918 32 6 2020-01-09
## 9919 30 1 2020-01-09
## 9920 0 0 2020-01-09
## 9921 0 0 2020-01-09
## 9922 13 0 2020-01-09
## 9923 121 8 2020-01-09
## 9924 3 0 2020-01-09
## 9925 22 2 2020-01-09
## 9926 0 0 2020-01-09
## 9927 125 47 2020-01-09
## 9928 5 0 2020-01-09
## 9929 0 0 2020-01-09
## 9930 3 1 2020-01-09
## 9931 59 1 2020-01-09
## 9932 2 0 2020-01-09
## 9933 72 5 2020-01-09
## 9934 90 1 2020-01-09
## 9935 0 0 2020-01-09
## 9936 0 0 2020-01-09
## 9937 8 0 2020-01-09
## 9938 0 0 2020-01-09
## 9939 3 0 2020-01-09
## 9940 0 0 2020-01-09
## 9941 41 1 2020-01-09
## 9942 23 1 2020-01-09
## 9943 0 0 2020-01-09
## 9944 61 4 2020-01-09
## 9945 0 0 2020-01-09
## 9946 28 9 2020-01-09
## 9947 1 0 2020-01-09
## 9948 9 0 2020-01-09
## 9949 14 5 2020-01-09
## 9950 21 3 2020-01-09
## 9951 0 0 2020-01-09
## 9952 6 0 2020-01-09
## 9953 13 1 2020-01-09
## 9954 4 1 2020-01-09
## 9955 0 0 2020-01-09
## 9956 2 0 2020-01-09
## 9957 3 0 2020-01-09
## 9958 12 2 2020-01-09
## 9959 16 1 2020-01-09
## 9960 7 0 2020-01-09
## 9961 18 2 2020-01-09
## 9962 31 7 2020-01-09
## 9963 27 1 2020-01-09
## 9964 1 0 2020-01-09
## 9965 28 3 2020-01-09
## 9966 0 0 2020-01-09
## 9967 13 3 2020-01-09
## 9968 0 0 2020-01-09
## 9969 31 7 2020-01-09
## 9970 53 3 2020-01-09
## 9971 69 4 2020-01-09
## 9972 40 4 2020-01-09
## 9973 0 0 2020-01-09
## 9974 1 0 2020-01-09
## 9975 26 1 2020-01-09
## 9976 6 1 2020-01-09
## 9977 11 0 2020-01-09
## 9978 15 1 2020-01-09
## 9979 4 0 2020-01-09
## 9980 16 1 2020-01-09
## 9981 33 3 2020-01-09
## 9982 8 0 2020-01-09
## 9983 0 0 2020-01-09
## 9984 27 1 2020-01-09
## 9985 2 0 2020-01-09
## 9986 0 0 2020-01-09
## 9987 22 1 2020-01-09
## 9988 19 0 2020-01-09
## 9989 0 0 2020-01-09
## 9990 49 0 2020-01-09
## 9991 83 35 2020-01-09
## 9992 0 0 2020-01-09
## 9993 2 0 2020-01-09
## 9994 27 3 2020-01-09
## 9995 0 0 2020-01-09
## 9996 41 1 2020-01-09
## 9997 1 0 2020-01-09
## 9998 34 1 2020-01-09
## 9999 2 0 2020-01-09
## 10000 13 4 2020-01-09
## 10001 1 0 2020-01-09
## 10002 26 4 2020-01-09
## 10003 4 0 2020-01-09
## 10004 83 2 2020-01-09
## 10005 44 1 2020-01-09
## 10006 1 0 2020-01-09
## 10007 0 0 2020-01-09
## 10008 0 0 2020-01-09
## 10009 0 0 2020-01-09
## 10010 21 1 2020-01-09
## 10011 1 0 2020-01-09
## 10012 63 5 2020-01-09
## 10013 67 2 2020-01-09
## 10014 61 11 2020-01-09
## 10015 40 3 2020-01-09
## 10016 3 0 2020-01-09
## 10017 2 0 2020-01-09
## 10018 39 2 2020-01-09
## 10019 48 1 2020-01-09
## 10020 1 0 2020-01-09
## 10021 14 1 2020-01-09
## 10022 0 0 2020-01-09
## 10023 356 7 2020-01-09
## 10024 1 0 2020-01-09
## 10025 63 5 2020-01-09
## 10026 12 0 2020-01-09
## 10027 1 0 2020-01-09
## 10028 19 1 2020-01-09
## 10029 2 0 2020-01-09
## 10030 6 0 2020-01-09
## 10031 29 8 2020-01-09
## 10032 1 0 2020-01-09
## 10033 291 1 2020-01-09
## 10034 2 1 2020-01-09
## 10035 1 0 2020-01-09
## 10036 0 0 2020-01-09
## 10037 1 0 2020-01-09
## 10038 6 0 2020-01-09
## 10039 2 0 2020-01-09
## 10040 49 0 2020-01-09
## 10041 0 2 2020-01-09
## 10042 4 0 2020-01-09
## 10043 60 9 2020-01-09
## 10044 418 17 2020-01-09
## 10045 2 0 2020-01-09
## 10046 25 0 2020-01-09
## 10047 2 0 2020-01-09
## 10048 4 0 2020-01-09
## 10049 1 0 2020-01-09
## 10050 13 0 2020-01-09
## 10051 2 0 2020-01-09
## 10052 132 20 2020-01-09
## 10053 8 1 2020-01-09
## 10054 2 1 2020-01-09
## 10055 0 0 2020-01-09
## 10056 0 0 2020-01-09
## 10057 19 1 2020-01-09
## 10058 0 0 2020-01-09
## 10059 2 0 2020-01-09
## 10060 2 0 2020-01-09
## 10061 12 1 2020-01-09
## 10062 0 0 2020-01-09
## 10063 0 0 2020-01-09
## 10064 25 0 2020-01-09
## 10065 0 0 2020-01-09
## 10066 2 1 2020-01-09
## 10067 0 0 2020-01-09
## 10068 2 0 2020-01-09
## 10069 10 0 2020-01-09
## 10070 0 0 2020-01-09
## 10071 0 0 2020-01-09
## 10072 0 0 2020-01-09
## 10073 79 4 2020-01-09
## 10074 24 3 2020-01-09
## 10075 1 0 2020-01-09
## 10076 53 0 2020-01-09
## 10077 5 0 2020-01-09
## 10078 1 0 2020-01-09
## 10079 2 1 2020-01-09
## 10080 2 1 2020-01-09
## 10081 8 0 2020-01-09
## 10082 1 0 2020-01-09
## 10083 1 0 2020-01-09
## 10084 24 1 2020-01-09
## 10085 71 2 2020-01-09
## 10086 0 0 2020-01-09
## 10087 0 0 2020-01-09
## 10088 0 0 2020-01-09
## 10089 10 0 2020-01-09
## 10090 1 0 2020-01-09
## 10091 30 4 2020-01-09
## 10092 17 2 2020-01-09
## 10093 0 0 2020-01-09
## 10094 1 0 2020-01-09
## 10095 45 5 2020-01-09
## 10096 1 0 2020-01-09
## 10097 1 0 2020-01-09
## 10098 0 0 2020-01-09
## 10099 37 1 2020-01-09
## 10100 25 5 2020-01-09
## 10101 1 0 2020-01-09
## 10102 4 0 2020-01-09
## 10103 2 0 2020-01-09
## 10104 9 3 2020-01-09
## 10105 0 0 2020-01-09
## 10106 3 1 2020-01-09
## 10107 5 0 2020-01-09
## 10108 0 0 2020-01-09
## 10109 55 2 2020-01-09
## 10110 1 0 2020-01-09
## 10111 11 0 2020-01-09
## 10112 1 0 2020-01-09
## 10113 92 14 2020-01-09
## 10114 0 0 2020-01-09
## 10115 26 2 2020-01-09
## 10116 12 3 2020-01-09
## 10117 1 0 2020-01-09
## 10118 0 0 2020-01-09
## 10119 7 3 2020-01-09
## 10120 1 0 2020-01-09
## 10121 7 0 2020-01-09
## 10122 34 2 2020-01-09
## 10123 0 0 2020-01-09
## 10124 2 0 2020-01-09
## 10125 11 1 2020-01-09
## 10126 5 1 2020-01-09
## 10127 1 0 2020-01-09
## 10128 7 0 2020-01-09
## 10129 2 0 2020-01-09
## 10130 19 1 2020-01-09
## 10131 0 0 2020-01-09
## 10132 1 0 2020-01-09
## 10133 18 2 2020-01-09
## 10134 2 0 2020-01-09
## 10135 1 0 2020-01-09
## 10136 28 0 2020-01-09
## 10137 0 1 2020-01-09
## 10138 1 0 2020-01-09
## 10139 36 1 2020-01-09
## 10140 394 28 2020-01-09
## 10141 1 0 2020-01-09
## 10142 0 0 2020-01-09
## 10143 3 0 2020-01-09
## 10144 2 0 2020-01-09
## 10145 9 0 2020-01-09
## 10146 30 2 2020-01-09
## 10147 6 0 2020-01-09
## 10148 0 0 2020-01-09
## 10149 35 5 2020-01-09
## 10150 0 0 2020-01-09
## 10151 57 2 2020-01-09
## 10152 0 0 2020-01-09
## 10153 0 0 2020-01-09
## 10154 7 0 2020-01-09
## 10155 0 1 2020-01-09
## 10156 9 1 2020-01-09
## 10157 23 2 2020-01-09
## 10158 3 0 2020-01-09
## 10159 1 0 2020-01-09
## 10160 82 2 2020-01-09
## 10161 48 7 2020-01-09
## 10162 30 8 2020-01-09
## 10163 30 3 2020-01-09
## 10164 17 0 2020-01-09
## 10165 2 0 2020-01-09
## 10166 134 0 2020-01-09
## 10167 3 1 2020-01-09
## 10168 3 0 2020-01-09
## 10169 93 16 2020-01-09
## 10170 3 0 2020-01-09
## 10171 0 0 2020-01-09
## 10172 2 0 2020-01-09
## 10173 11 1 2020-01-09
## 10174 11 4 2020-01-09
## 10175 1 0 2020-01-09
## 10176 6 0 2020-01-09
## 10177 5 0 2020-01-09
## 10178 4 0 2020-01-09
## 10179 3 0 2020-01-09
## 10180 1 0 2020-01-09
## 10181 101 1 2020-01-09
## 10182 154 8 2020-01-09
## 10183 11 3 2020-01-08
## 10184 0 0 2020-01-08
## 10185 1 1 2020-01-08
## 10186 27 6 2020-01-08
## 10187 8 0 2020-01-08
## 10188 0 0 2020-01-08
## 10189 9 0 2020-01-08
## 10190 1 0 2020-01-08
## 10191 0 0 2020-01-08
## 10192 2 2 2020-01-08
## 10193 2 0 2020-01-08
## 10194 3 0 2020-01-08
## 10195 58 0 2020-01-08
## 10196 2 0 2020-01-08
## 10197 1 0 2020-01-08
## 10198 1 0 2020-01-08
## 10199 14 1 2020-01-08
## 10200 2 0 2020-01-08
## 10201 19 1 2020-01-08
## 10202 18 2 2020-01-08
## 10203 38 2 2020-01-08
## 10204 2 0 2020-01-08
## 10205 0 0 2020-01-08
## 10206 0 0 2020-01-08
## 10207 2 0 2020-01-08
## 10208 0 0 2020-01-08
## 10209 18 0 2020-01-08
## 10210 7 0 2020-01-08
## 10211 12 1 2020-01-08
## 10212 0 0 2020-01-08
## 10213 0 0 2020-01-08
## 10214 1 0 2020-01-08
## 10215 0 0 2020-01-08
## 10216 18 0 2020-01-08
## 10217 10 0 2020-01-08
## 10218 7 1 2020-01-08
## 10219 8 0 2020-01-08
## 10220 17 4 2020-01-08
## 10221 3 2 2020-01-08
## 10222 54 1 2020-01-08
## 10223 32 0 2020-01-08
## 10224 7 0 2020-01-08
## 10225 7 0 2020-01-08
## 10226 19 0 2020-01-08
## 10227 0 0 2020-01-08
## 10228 93 21 2020-01-08
## 10229 0 0 2020-01-08
## 10230 1 0 2020-01-08
## 10231 0 0 2020-01-08
## 10232 1 1 2020-01-08
## 10233 57 2 2020-01-08
## 10234 2 0 2020-01-08
## 10235 5 0 2020-01-08
## 10236 17 0 2020-01-08
## 10237 8 2 2020-01-08
## 10238 0 0 2020-01-08
## 10239 16 0 2020-01-08
## 10240 8 1 2020-01-08
## 10241 12 0 2020-01-08
## 10242 9 3 2020-01-08
## 10243 17 2 2020-01-08
## 10244 5 0 2020-01-08
## 10245 40 5 2020-01-08
## 10246 13 1 2020-01-08
## 10247 2 0 2020-01-08
## 10248 6 0 2020-01-08
## 10249 0 0 2020-01-08
## 10250 11 1 2020-01-08
## 10251 1 0 2020-01-08
## 10252 6 0 2020-01-08
## 10253 3 0 2020-01-08
## 10254 0 0 2020-01-08
## 10255 0 0 2020-01-08
## 10256 35 3 2020-01-08
## 10257 11 0 2020-01-08
## 10258 75 8 2020-01-08
## 10259 0 0 2020-01-08
## 10260 6 2 2020-01-08
## 10261 6 0 2020-01-08
## 10262 25 0 2020-01-08
## 10263 6 0 2020-01-08
## 10264 1 0 2020-01-08
## 10265 5 0 2020-01-08
## 10266 18 0 2020-01-08
## 10267 0 0 2020-01-08
## 10268 3 1 2020-01-08
## 10269 14 1 2020-01-08
## 10270 1 1 2020-01-08
## 10271 15 1 2020-01-08
## 10272 2 0 2020-01-08
## 10273 8 2 2020-01-08
## 10274 15 0 2020-01-08
## 10275 33 24 2020-01-08
## 10276 0 0 2020-01-08
## 10277 3 0 2020-01-08
## 10278 837 10 2020-01-08
## 10279 11 1 2020-01-08
## 10280 24 0 2020-01-08
## 10281 0 0 2020-01-08
## 10282 0 0 2020-01-08
## 10283 81 2 2020-01-08
## 10284 0 2 2020-01-08
## 10285 0 0 2020-01-08
## 10286 0 0 2020-01-08
## 10287 0 0 2020-01-08
## 10288 14 0 2020-01-08
## 10289 0 0 2020-01-08
## 10290 1 0 2020-01-08
## 10291 3 0 2020-01-08
## 10292 13 0 2020-01-08
## 10293 1 0 2020-01-08
## 10294 0 0 2020-01-08
## 10295 149 9 2020-01-08
## 10296 2 1 2020-01-08
## 10297 2 0 2020-01-08
## 10298 138 10 2020-01-08
## 10299 73 3 2020-01-08
## 10300 1 1 2020-01-08
## 10301 4 1 2020-01-08
## 10302 143 13 2020-01-08
## 10303 8 1 2020-01-08
## 10304 0 0 2020-01-08
## 10305 3 0 2020-01-08
## 10306 0 0 2020-01-08
## 10307 2 0 2020-01-08
## 10308 6 1 2020-01-08
## 10309 22 16 2020-01-08
## 10310 5 0 2020-01-08
## 10311 1 1 2020-01-08
## 10312 3 1 2020-01-08
## 10313 3 1 2020-01-08
## 10314 21 0 2020-01-08
## 10315 95 22 2020-01-08
## 10316 3 0 2020-01-08
## 10317 5 3 2020-01-08
## 10318 2 0 2020-01-08
## 10319 2 0 2020-01-08
## 10320 9 0 2020-01-08
## 10321 5 0 2020-01-08
## 10322 22 0 2020-01-08
## 10323 1 0 2020-01-08
## 10324 63 13 2020-01-08
## 10325 0 0 2020-01-08
## 10326 0 0 2020-01-08
## 10327 0 0 2020-01-08
## 10328 0 0 2020-01-08
## 10329 11 0 2020-01-08
## 10330 47 10 2020-01-08
## 10331 37 6 2020-01-08
## 10332 1 3 2020-01-08
## 10333 0 0 2020-01-08
## 10334 11 3 2020-01-08
## 10335 0 0 2020-01-08
## 10336 5 0 2020-01-08
## 10337 37 1 2020-01-08
## 10338 0 0 2020-01-08
## 10339 0 0 2020-01-08
## 10340 9 0 2020-01-08
## 10341 3 1 2020-01-08
## 10342 0 0 2020-01-08
## 10343 4 0 2020-01-08
## 10344 2 0 2020-01-08
## 10345 5 0 2020-01-08
## 10346 4 0 2020-01-08
## 10347 6 0 2020-01-08
## 10348 1 0 2020-01-08
## 10349 33 0 2020-01-08
## 10350 3 0 2020-01-08
## 10351 26 3 2020-01-08
## 10352 0 0 2020-01-08
## 10353 1 0 2020-01-08
## 10354 5 0 2020-01-08
## 10355 6 0 2020-01-08
## 10356 10 0 2020-01-08
## 10357 2 0 2020-01-08
## 10358 8 0 2020-01-08
## 10359 5 1 2020-01-09
## 10360 10 2 2020-01-09
## 10361 7 0 2020-01-09
## 10362 19 1 2020-01-09
## 10363 11 0 2020-01-09
## 10364 0 0 2020-01-09
## 10365 3 0 2020-01-09
## 10366 18 1 2020-01-09
## 10367 0 0 2020-01-09
## 10368 14 0 2020-01-09
## 10369 23 3 2020-01-09
## 10370 7 1 2020-01-09
## 10371 14 1 2020-01-09
## 10372 1 0 2020-01-09
## 10373 0 0 2020-01-09
## 10374 6 0 2020-01-09
## 10375 0 0 2020-01-09
## 10376 23 3 2020-01-09
## 10377 9 0 2020-01-09
## 10378 14 1 2020-01-09
## 10379 4 2 2020-01-09
## 10380 5 1 2020-01-09
## 10381 14 0 2020-01-09
## 10382 2 0 2020-01-09
## 10383 7 1 2020-01-09
## 10384 7 2 2020-01-09
## 10385 16 2 2020-01-09
## 10386 7 0 2020-01-09
## 10387 101 19 2020-01-09
## 10388 0 0 2020-01-09
## 10389 5 1 2020-01-09
## 10390 1 0 2020-01-09
## 10391 0 0 2020-01-09
## 10392 19 3 2020-01-09
## 10393 8 1 2020-01-09
## 10394 1 1 2020-01-09
## 10395 25 8 2020-01-09
## 10396 448 217 2020-01-09
## 10397 1 0 2020-01-09
## 10398 0 0 2020-01-09
## 10399 0 0 2020-01-09
## 10400 40 7 2020-01-09
## 10401 20 1 2020-01-09
## 10402 6 0 2020-01-09
## 10403 1 0 2020-01-09
## 10404 6 1 2020-01-09
## 10405 453 20 2020-01-09
## 10406 0 0 2020-01-09
## 10407 0 0 2020-01-09
## 10408 30 8 2020-01-09
## 10409 1 0 2020-01-09
## 10410 7 0 2020-01-09
## 10411 78 8 2020-01-09
## 10412 0 0 2020-01-09
## 10413 5 2 2020-01-09
## 10414 0 0 2020-01-09
## 10415 4 0 2020-01-09
## 10416 11 2 2020-01-09
## 10417 184 3 2020-01-09
## 10418 37 1 2020-01-09
## 10419 2 1 2020-01-09
## 10420 13 2 2020-01-09
## 10421 3 0 2020-01-09
## 10422 65 1 2020-01-09
## 10423 2 1 2020-01-09
## 10424 6 1 2020-01-09
## 10425 0 0 2020-01-09
## 10426 5 0 2020-01-09
## 10427 133 2 2020-01-09
## 10428 11 3 2020-01-09
## 10429 4 0 2020-01-09
## 10430 3 0 2020-01-09
## 10431 63 7 2020-01-09
## 10432 202 30 2020-01-09
## 10433 16 25 2020-01-09
## 10434 1 1 2020-01-09
## 10435 19 3 2020-01-09
## 10436 0 0 2020-01-09
## 10437 0 0 2020-01-09
## 10438 20 4 2020-01-09
## 10439 5 0 2020-01-09
## 10440 8 1 2020-01-09
## 10441 5 1 2020-01-09
## 10442 0 0 2020-01-09
## 10443 0 0 2020-01-09
## 10444 12 0 2020-01-09
## 10445 13 2 2020-01-09
## 10446 14 5 2020-01-09
## 10447 14 1 2020-01-09
## 10448 28 1 2020-01-09
## 10449 7 0 2020-01-09
## 10450 5 2 2020-01-09
## 10451 8 3 2020-01-09
## 10452 7 0 2020-01-09
## 10453 6 1 2020-01-09
## 10454 22 3 2020-01-09
## 10455 40 2 2020-01-09
## 10456 10 1 2020-01-09
## 10457 9 1 2020-01-09
## 10458 0 0 2020-01-09
## 10459 15 2 2020-01-09
## 10460 3 0 2020-01-09
## 10461 0 0 2020-01-09
## 10462 0 0 2020-01-09
## 10463 5 2 2020-01-09
## 10464 6 0 2020-01-09
## 10465 3 0 2020-01-09
## 10466 5 0 2020-01-09
## 10467 8 1 2020-01-09
## 10468 27 1 2020-01-09
## 10469 4 1 2020-01-09
## 10470 11 1 2020-01-09
## 10471 3 0 2020-01-09
## 10472 0 0 2020-01-09
## 10473 9 1 2020-01-09
## 10474 0 0 2020-01-09
## 10475 8 0 2020-01-09
## 10476 7 0 2020-01-09
## 10477 79 11 2020-01-09
## 10478 0 0 2020-01-09
## 10479 0 0 2020-01-09
## 10480 16 0 2020-01-09
## 10481 31 0 2020-01-09
## 10482 8 1 2020-01-09
## 10483 7 2 2020-01-09
## 10484 9 1 2020-01-09
## 10485 1 0 2020-01-09
## 10486 8 31 2020-01-09
## 10487 20 0 2020-01-09
## 10488 12 1 2020-01-09
## 10489 8 1 2020-01-09
## 10490 2 1 2020-01-09
## 10491 19 5 2020-01-09
## 10492 7 1 2020-01-09
## 10493 0 1 2020-01-09
## 10494 0 0 2020-01-09
## 10495 3 0 2020-01-09
## 10496 23 3 2020-01-09
## 10497 13 0 2020-01-09
## 10498 6 0 2020-01-09
## 10499 492 63 2020-01-09
## 10500 0 0 2020-01-09
## 10501 1 0 2020-01-09
## 10502 4 0 2020-01-09
## 10503 4 1 2020-01-09
## 10504 5 0 2020-01-09
## 10505 32 0 2020-01-09
## 10506 5 0 2020-01-09
## 10507 14 1 2020-01-09
## 10508 15 2 2020-01-09
## 10509 164 7 2020-01-09
## 10510 0 0 2020-01-09
## 10511 3 0 2020-01-09
## 10512 0 0 2020-01-09
## 10513 3 0 2020-01-09
## 10514 6 0 2020-01-09
## 10515 11 1 2020-01-09
## 10516 0 0 2020-01-09
## 10517 0 0 2020-01-09
## 10518 0 0 2020-01-09
## 10519 20 3 2020-01-09
## 10520 1 0 2020-01-09
## 10521 130 7 2020-01-09
## 10522 12 2 2020-01-09
## 10523 0 0 2020-01-09
## 10524 52 8 2020-01-09
## 10525 10 0 2020-01-09
## 10526 36 4 2020-01-09
## 10527 46 0 2020-01-09
## 10528 28 2 2020-01-09
## 10529 4 0 2020-01-09
## 10530 13 3 2020-01-09
## 10531 4 0 2020-01-09
## 10532 0 0 2020-01-09
## 10533 8 0 2020-01-09
## 10534 0 0 2020-01-09
## 10535 9 0 2020-01-09
## 10536 107 4 2020-01-09
## 10537 4 1 2020-01-09
## 10538 16 7 2020-01-09
## 10539 44 8 2020-01-09
## 10540 24 4 2020-01-09
## 10541 9 0 2020-01-09
## 10542 0 0 2020-01-09
## 10543 0 0 2020-01-09
## 10544 0 0 2020-01-09
## 10545 57 4 2020-01-09
## 10546 0 0 2020-01-09
## 10547 0 0 2020-01-09
## 10548 7 0 2020-01-09
## 10549 11 2 2020-01-09
## 10550 3 0 2020-01-09
## 10551 201 54 2020-01-09
## 10552 23 0 2020-01-09
## 10553 5 0 2020-01-09
## 10554 19 6 2020-01-09
## 10555 0 0 2020-01-09
## 10556 0 0 2020-01-09
## 10557 3 2 2020-01-09
## 10558 4 0 2020-01-09
## 10559 0 0 2020-01-09
## 10560 0 2 2020-01-09
## 10561 0 0 2020-01-09
## 10562 13 0 2020-01-09
## 10563 0 0 2020-01-09
## 10564 15 0 2020-01-09
## 10565 8 0 2020-01-09
## 10566 26 0 2020-01-09
## 10567 21 0 2020-01-09
## 10568 5 0 2020-01-09
## 10569 8 1 2020-01-09
## 10570 18 0 2020-01-09
## 10571 0 1 2020-01-09
## 10572 0 0 2020-01-09
## 10573 4 1 2020-01-09
## 10574 61 6 2020-01-09
## 10575 6 0 2020-01-09
## 10576 3 0 2020-01-09
## 10577 2 0 2020-01-09
## 10578 37 3 2020-01-09
## 10579 3 0 2020-01-09
## 10580 615 9 2020-01-09
## 10581 6 3 2020-01-09
## 10582 0 0 2020-01-09
## 10583 0 0 2020-01-09
## 10584 14 2 2020-01-09
## 10585 6 0 2020-01-09
## 10586 0 0 2020-01-09
## 10587 0 0 2020-01-09
## 10588 1 2 2020-01-09
## 10589 16 2 2020-01-09
## 10590 0 0 2020-01-09
## 10591 13 0 2020-01-09
## 10592 1 0 2020-01-09
## 10593 234 13 2020-01-09
## 10594 0 0 2020-01-09
## 10595 7 1 2020-01-09
## 10596 42 3 2020-01-09
## 10597 3 1 2020-01-09
## 10598 0 0 2020-01-09
## 10599 2 0 2020-01-09
## 10600 6 2 2020-01-09
## 10601 14 1 2020-01-09
## 10602 8 0 2020-01-09
## 10603 17 3 2020-01-09
## 10604 172 5 2020-01-09
## 10605 10 1 2020-01-09
## 10606 45 2 2020-01-09
## 10607 119 4 2020-01-09
## 10608 162 54 2020-01-09
## 10609 13 0 2020-01-09
## 10610 0 0 2020-01-09
## 10611 6 0 2020-01-09
## 10612 89 28 2020-01-09
## 10613 37 6 2020-01-09
## 10614 0 0 2020-01-09
## 10615 0 0 2020-01-09
## 10616 35 6 2020-01-09
## 10617 14 0 2020-01-09
## 10618 35 4 2020-01-09
## 10619 6 0 2020-01-09
## 10620 3 1 2020-01-09
## 10621 0 0 2020-01-09
## 10622 35 2 2020-01-09
## 10623 1 0 2020-01-09
## 10624 130 1 2020-01-09
## 10625 6 0 2020-01-09
## 10626 0 1 2020-01-09
## 10627 2 0 2020-01-09
## 10628 0 0 2020-01-09
## 10629 0 0 2020-01-09
## 10630 0 0 2020-01-09
## 10631 7 0 2020-01-09
## 10632 0 0 2020-01-09
## 10633 4 0 2020-01-09
## 10634 34 5 2020-01-09
## 10635 2 0 2020-01-09
## 10636 0 0 2020-01-09
## 10637 4 0 2020-01-09
## 10638 101 7 2020-01-09
## 10639 54 9 2020-01-09
## 10640 5 1 2020-01-09
## 10641 5 1 2020-01-09
## 10642 0 0 2020-01-09
## 10643 15 0 2020-01-09
## 10644 25 0 2020-01-09
## 10645 19 5 2020-01-09
## 10646 2 1 2020-01-09
## 10647 10 4 2020-01-09
## 10648 43 1 2020-01-09
## 10649 605 136 2020-01-09
## 10650 1 1 2020-01-09
## 10651 61 5 2020-01-09
## 10652 11 2 2020-01-09
## 10653 5 0 2020-01-09
## 10654 0 0 2020-01-09
## 10655 0 0 2020-01-09
## 10656 20 5 2020-01-09
## 10657 186 25 2020-01-09
## 10658 5 2 2020-01-09
## 10659 0 0 2020-01-09
## 10660 0 0 2020-01-09
## 10661 2 0 2020-01-09
## 10662 9 6 2020-01-09
## 10663 64 1 2020-01-09
## 10664 25 0 2020-01-09
## 10665 0 0 2020-01-09
## 10666 10 0 2020-01-09
## 10667 65 6 2020-01-09
## 10668 1 0 2020-01-09
## 10669 5 0 2020-01-09
## 10670 0 0 2020-01-09
## 10671 0 0 2020-01-09
## 10672 0 0 2020-01-09
## 10673 0 0 2020-01-09
## 10674 0 0 2020-01-09
## 10675 25 0 2020-01-09
## 10676 4 0 2020-01-09
## 10677 5 1 2020-01-09
## 10678 220 11 2020-01-09
## 10679 2 1 2020-01-09
## 10680 3 0 2020-01-09
## 10681 13 1 2020-01-09
## 10682 1 0 2020-01-09
## 10683 5 0 2020-01-09
## 10684 0 0 2020-01-09
## 10685 0 0 2020-01-09
## 10686 9 0 2020-01-09
## 10687 23 5 2020-01-09
## 10688 2 0 2020-01-09
## 10689 6 0 2020-01-09
## 10690 1 1 2020-01-09
## 10691 5 0 2020-01-09
## 10692 4 0 2020-01-09
## 10693 24 4 2020-01-09
## 10694 32 3 2020-01-09
## 10695 24 1 2020-01-09
## 10696 47 3 2020-01-09
## 10697 23 1 2020-01-09
## 10698 64 8 2020-01-09
## 10699 16 1 2020-01-09
## 10700 0 0 2020-01-09
## 10701 0 0 2020-01-09
## 10702 14 0 2020-01-09
## 10703 12 3 2020-01-09
## 10704 0 0 2020-01-09
## 10705 4 1 2020-01-09
## 10706 15 0 2020-01-09
## 10707 0 0 2020-01-09
## 10708 1 1 2020-01-09
## 10709 0 0 2020-01-09
## 10710 0 0 2020-01-09
## 10711 20 0 2020-01-09
## 10712 16 0 2020-01-09
## 10713 6 1 2020-01-09
## 10714 0 0 2020-01-09
## 10715 29 3 2020-01-09
## 10716 0 0 2020-01-09
## 10717 153 17 2020-01-09
## 10718 20 1 2020-01-09
## 10719 48 1 2020-01-09
## 10720 395 128 2020-01-09
## 10721 4 0 2020-01-09
## 10722 0 0 2020-01-09
## 10723 12 0 2020-01-09
## 10724 2 0 2020-01-09
## 10725 0 0 2020-01-09
## 10726 0 0 2020-01-09
## 10727 0 0 2020-01-09
## 10728 2 0 2020-01-09
## 10729 0 0 2020-01-09
## 10730 0 0 2020-01-09
## 10731 20 0 2020-01-09
## 10732 12 1 2020-01-09
## 10733 8 0 2020-01-09
## 10734 28 5 2020-01-09
## 10735 0 0 2020-01-09
## 10736 19 0 2020-01-09
## 10737 4 0 2020-01-09
## 10738 0 0 2020-01-09
## 10739 54 3 2020-01-09
## 10740 5 0 2020-01-09
## 10741 0 0 2020-01-09
## 10742 0 0 2020-01-09
## 10743 1 0 2020-01-09
## 10744 0 0 2020-01-09
## 10745 21 1 2020-01-09
## 10746 0 0 2020-01-09
## 10747 24 1 2020-01-09
## 10748 13 0 2020-01-09
## 10749 0 0 2020-01-09
## 10750 7 1 2020-01-09
## 10751 8 0 2020-01-09
## 10752 1 0 2020-01-09
## 10753 32 1 2020-01-09
## 10754 33 1 2020-01-09
## 10755 0 0 2020-01-09
## 10756 4 1 2020-01-09
## 10757 0 0 2020-01-09
## 10758 0 0 2020-01-09
## 10759 7 0 2020-01-09
## 10760 29 1 2020-01-09
## 10761 0 1 2020-01-09
## 10762 1 0 2020-01-09
## 10763 0 0 2020-01-09
## 10764 0 0 2020-01-09
## 10765 6 3 2020-01-09
## 10766 0 0 2020-01-09
## 10767 28 6 2020-01-09
## 10768 4 0 2020-01-09
## 10769 11 1 2020-01-09
## 10770 23 3 2020-01-09
## 10771 15 5 2020-01-09
## 10772 0 0 2020-01-09
## 10773 3 2 2020-01-09
## 10774 0 0 2020-01-09
## 10775 14 1 2020-01-09
## 10776 0 0 2020-01-09
## 10777 6 0 2020-01-09
## 10778 11 2 2020-01-09
## 10779 3 0 2020-01-09
## 10780 5 0 2020-01-09
## 10781 132 25 2020-01-09
## 10782 2 1 2020-01-09
## 10783 66 0 2020-01-09
## 10784 267 42 2020-01-09
## 10785 10 0 2020-01-09
## 10786 29 3 2020-01-09
## 10787 11 0 2020-01-09
## 10788 16 0 2020-01-09
## 10789 0 0 2020-01-09
## 10790 97 35 2020-01-09
## 10791 172 7 2020-01-09
## 10792 0 0 2020-01-09
## 10793 0 0 2020-01-09
## 10794 0 0 2020-01-09
## 10795 18 0 2020-01-09
## 10796 7 2 2020-01-09
## 10797 3 0 2020-01-09
## 10798 0 0 2020-01-09
## 10799 3 0 2020-01-09
## 10800 1 1 2020-01-09
## 10801 3 0 2020-01-09
## 10802 73 7 2020-01-09
## 10803 18 0 2020-01-09
## 10804 3 0 2020-01-09
## 10805 88 2 2020-01-09
## 10806 12 2 2020-01-09
## 10807 5 2 2020-01-09
## 10808 7 2 2020-01-09
## 10809 26 6 2020-01-09
## 10810 0 0 2020-01-09
## 10811 7 1 2020-01-09
## 10812 0 0 2020-01-09
## 10813 2198 213 2020-01-09
## 10814 31 7 2020-01-09
## 10815 56 10 2020-01-09
## 10816 0 1 2020-01-09
## 10817 15 1 2020-01-09
## 10818 40 0 2020-01-09
## 10819 0 0 2020-01-09
## 10820 0 1 2020-01-09
## 10821 6 0 2020-01-09
## 10822 21 9 2020-01-09
## 10823 238 18 2020-01-09
## 10824 2 9 2020-01-09
## 10825 185 1 2020-01-09
## 10826 5 2 2020-01-09
## 10827 0 0 2020-01-09
## 10828 9 0 2020-01-09
## 10829 0 0 2020-01-09
## 10830 20 2 2020-01-09
## 10831 36 0 2020-01-09
## 10832 20 3 2020-01-09
## 10833 29 2 2020-01-09
## 10834 0 0 2020-01-09
## 10835 0 0 2020-01-09
## 10836 19 4 2020-01-09
## 10837 5 5 2020-01-09
## 10838 1 0 2020-01-09
## 10839 54 2 2020-01-09
## 10840 6 1 2020-01-09
## 10841 6 1 2020-01-09
## 10842 7 2 2020-01-09
## 10843 0 0 2020-01-09
## 10844 0 0 2020-01-09
## 10845 0 0 2020-01-09
## 10846 13 2 2020-01-09
## 10847 0 0 2020-01-09
## 10848 11 1 2020-01-09
## 10849 17 1 2020-01-09
## 10850 8 0 2020-01-09
## 10851 0 0 2020-01-09
## 10852 0 0 2020-01-09
## 10853 0 0 2020-01-09
## 10854 3 0 2020-01-09
## 10855 3 0 2020-01-09
## 10856 45 12 2020-01-09
## 10857 0 0 2020-01-09
## 10858 11 1 2020-01-09
## 10859 8 2 2020-01-09
## 10860 5 0 2020-01-09
## 10861 6 0 2020-01-09
## 10862 5 0 2020-01-09
## 10863 12 1 2020-01-09
## 10864 0 0 2020-01-09
## 10865 0 0 2020-01-09
## 10866 26 5 2020-01-09
## 10867 43 1 2020-01-09
## 10868 14 3 2020-01-09
## 10869 123 2 2020-01-09
## 10870 7 0 2020-01-09
## 10871 10 0 2020-01-09
## 10872 7 0 2020-01-09
## 10873 6 1 2020-01-09
## 10874 7 0 2020-01-09
## 10875 0 0 2020-01-09
## 10876 17 0 2020-01-09
## 10877 30 17 2020-01-09
## 10878 6 2 2020-01-09
## 10879 7 5 2020-01-09
## 10880 6 2 2020-01-09
## 10881 11 1 2020-01-09
## 10882 0 0 2020-01-09
## 10883 8 0 2020-01-09
## 10884 14 6 2020-01-09
## 10885 2 3 2020-01-09
## 10886 1 0 2020-01-09
## 10887 5 0 2020-01-09
## 10888 1 0 2020-01-09
## 10889 38 1 2020-01-09
## 10890 15 0 2020-01-09
## 10891 11 0 2020-01-09
## 10892 4 0 2020-01-09
## 10893 2 1 2020-01-09
## 10894 12 1 2020-01-09
## 10895 5 0 2020-01-09
## 10896 43 8 2020-01-09
## 10897 7 0 2020-01-09
## 10898 0 0 2020-01-09
## 10899 0 0 2020-01-09
## 10900 7 1 2020-01-09
## 10901 292 9 2020-01-09
## 10902 19 0 2020-01-09
## 10903 4 0 2020-01-09
## 10904 1 0 2020-01-09
## 10905 0 0 2020-01-09
## 10906 5 0 2020-01-09
## 10907 0 0 2020-01-09
## 10908 28 8 2020-01-09
## 10909 2 0 2020-01-09
## 10910 3 2 2020-01-09
## 10911 4 0 2020-01-09
## 10912 7 2 2020-01-09
## 10913 13 3 2020-01-09
## 10914 1 0 2020-01-09
## 10915 41 0 2020-01-09
## 10916 2 0 2020-01-09
## 10917 0 1 2020-01-09
## 10918 0 0 2020-01-09
## 10919 4 0 2020-01-09
## 10920 10 0 2020-01-09
## 10921 10 0 2020-01-09
## 10922 69 5 2020-01-09
## 10923 15 0 2020-01-09
## 10924 27 1 2020-01-09
## 10925 3 0 2020-01-09
## 10926 10 3 2020-01-09
## 10927 4 0 2020-01-09
## 10928 2 0 2020-01-09
## 10929 2 0 2020-01-09
## 10930 13 2 2020-01-09
## 10931 0 0 2020-01-09
## 10932 6 1 2020-01-09
## 10933 2 0 2020-01-09
## 10934 0 0 2020-01-09
## 10935 0 0 2020-01-09
## 10936 1 0 2020-01-09
## 10937 6 2 2020-01-09
## 10938 11 6 2020-01-09
## 10939 15 1 2020-01-09
## 10940 2 0 2020-01-09
## 10941 32 4 2020-01-09
## 10942 1 1 2020-01-09
## 10943 10 1 2020-01-09
## 10944 0 0 2020-01-09
## 10945 18 3 2020-01-09
## 10946 15 3 2020-01-09
## 10947 93 2 2020-01-09
## 10948 28 2 2020-01-09
## 10949 39 4 2020-01-09
## 10950 9 0 2020-01-09
## 10951 6 0 2020-01-09
## 10952 7 0 2020-01-09
## 10953 43 5 2020-01-09
## 10954 19 4 2020-01-09
## 10955 15 0 2020-01-09
## 10956 17 1 2020-01-09
## 10957 19 1 2020-01-09
## 10958 3 0 2020-01-09
## 10959 14 3 2020-01-09
## 10960 14 4 2020-01-09
## 10961 10 1 2020-01-09
## 10962 3 0 2020-01-09
## 10963 3 0 2020-01-09
## 10964 16 1 2020-01-09
## 10965 7 0 2020-01-09
## 10966 2 0 2020-01-09
## 10967 7 0 2020-01-09
## 10968 14 4 2020-01-09
## 10969 6 1 2020-01-09
## 10970 138 26 2020-01-09
## 10971 8 0 2020-01-09
## 10972 0 0 2020-01-09
## 10973 2 0 2020-01-09
## 10974 2 1 2020-01-09
## 10975 21 1 2020-01-09
## 10976 0 0 2020-01-09
## 10977 4 0 2020-01-09
## 10978 5 0 2020-01-09
## 10979 0 0 2020-01-09
## 10980 2 0 2020-01-09
## 10981 0 0 2020-01-09
## 10982 0 0 2020-01-09
## 10983 0 0 2020-01-09
## 10984 13 4 2020-01-09
## 10985 5 1 2020-01-09
## 10986 3 0 2020-01-09
## 10987 0 0 2020-01-09
## 10988 4 1 2020-01-09
## 10989 74 4 2020-01-09
## 10990 100 3 2020-01-09
## 10991 8 1 2020-01-09
## 10992 11 0 2020-01-09
## 10993 5 0 2020-01-09
## 10994 2 0 2020-01-09
## 10995 8 1 2020-01-09
## 10996 6 2 2020-01-09
## 10997 8 2 2020-01-09
## 10998 0 0 2020-01-09
## 10999 6 0 2020-01-09
## 11000 3 0 2020-01-09
## 11001 4 0 2020-01-09
## 11002 0 0 2020-01-09
## 11003 283 3 2020-01-09
## 11004 7 0 2020-01-09
## 11005 9 0 2020-01-09
## 11006 4 0 2020-01-09
## 11007 12 1 2020-01-09
## 11008 2 0 2020-01-09
## 11009 41 1 2020-01-09
## 11010 4 0 2020-01-09
## 11011 16 3 2020-01-09
## 11012 287 1560 2020-01-09
## 11013 8 0 2020-01-09
## 11014 13 8 2020-01-09
## 11015 4 0 2020-01-09
## 11016 10 1 2020-01-09
## 11017 9 0 2020-01-09
## 11018 60 2 2020-01-09
## 11019 3 0 2020-01-09
## 11020 9 4 2020-01-09
## 11021 10 0 2020-01-09
## 11022 23 0 2020-01-09
## 11023 3 5 2020-01-09
## 11024 1 0 2020-01-09
## 11025 0 0 2020-01-09
## 11026 57 1 2020-01-09
## 11027 0 0 2020-01-09
## 11028 0 0 2020-01-09
## 11029 0 0 2020-01-09
## 11030 14 3 2020-01-09
## 11031 11 0 2020-01-09
## 11032 12 2 2020-01-09
## 11033 0 0 2020-01-09
## 11034 4 0 2020-01-09
## 11035 4 0 2020-01-09
## 11036 10 0 2020-01-09
## 11037 53 0 2020-01-09
## 11038 6 1 2020-01-09
## 11039 6 0 2020-01-09
## 11040 9 0 2020-01-09
## 11041 0 0 2020-01-09
## 11042 4 0 2020-01-09
## 11043 228 3 2020-01-09
## 11044 6 0 2020-01-09
## 11045 0 0 2020-01-09
## 11046 0 0 2020-01-09
## 11047 8 0 2020-01-09
## 11048 45 5 2020-01-09
## 11049 95 13 2020-01-09
## 11050 1 0 2020-01-09
## 11051 22 5 2020-01-09
## 11052 10 1 2020-01-09
## 11053 6 8 2020-01-09
## 11054 17 3 2020-01-09
## 11055 0 0 2020-01-09
## 11056 9 0 2020-01-09
## 11057 15 1 2020-01-09
## 11058 3 0 2020-01-09
## 11059 9 0 2020-01-09
## 11060 4 0 2020-01-09
## 11061 1 0 2020-01-09
## 11062 11 1 2020-01-09
## 11063 76 21 2020-01-09
## 11064 43 5 2020-01-09
## 11065 17 6 2020-01-09
## 11066 19 1 2020-01-09
## 11067 4 1 2020-01-09
## 11068 0 0 2020-01-09
## 11069 50 2 2020-01-09
## 11070 19 0 2020-01-09
## 11071 4 0 2020-01-09
## 11072 11 3 2020-01-09
## 11073 0 0 2020-01-09
## 11074 0 0 2020-01-09
## 11075 33 11 2020-01-09
## 11076 27 3 2020-01-09
## 11077 9 1 2020-01-09
## 11078 1 2 2020-01-09
## 11079 1 1 2020-01-09
## 11080 105 70 2020-01-09
## 11081 6 0 2020-01-09
## 11082 7 1 2020-01-09
## 11083 8 0 2020-01-09
## 11084 2 0 2020-01-09
## 11085 4 0 2020-01-09
## 11086 0 0 2020-01-09
## 11087 39 6 2020-01-09
## 11088 3 0 2020-01-09
## 11089 0 0 2020-01-09
## 11090 0 0 2020-01-09
## 11091 2 1 2020-01-09
## 11092 3 0 2020-01-09
## 11093 0 0 2020-01-09
## 11094 0 2 2020-01-09
## 11095 4 1 2020-01-09
## 11096 11 0 2020-01-09
## 11097 0 0 2020-01-09
## 11098 48 11 2020-01-09
## 11099 16 0 2020-01-09
## 11100 6 1 2020-01-09
## 11101 0 0 2020-01-09
## 11102 4 1 2020-01-09
## 11103 4 1 2020-01-09
## 11104 1 0 2020-01-09
## 11105 3 0 2020-01-09
## 11106 224 9 2020-01-09
## 11107 6 1 2020-01-09
## 11108 99 21 2020-01-09
## 11109 14 0 2020-01-09
## 11110 26 5 2020-01-09
## 11111 8 0 2020-01-09
## 11112 1 0 2020-01-09
## 11113 15 0 2020-01-09
## 11114 8 2 2020-01-09
## 11115 114 4 2020-01-09
## 11116 7 1 2020-01-09
## 11117 7 2 2020-01-09
## 11118 7 1 2020-01-09
## 11119 125 4 2020-01-09
## 11120 6 1 2020-01-09
## 11121 8 0 2020-01-09
## 11122 4 2 2020-01-09
## 11123 19 0 2020-01-09
## 11124 1 0 2020-01-09
## 11125 5 0 2020-01-09
## 11126 11 3 2020-01-09
## 11127 7 1 2020-01-09
## 11128 10 1 2020-01-09
## 11129 17 3 2020-01-09
## 11130 95 5 2020-01-09
## 11131 8 0 2020-01-09
## 11132 5 2 2020-01-09
## 11133 19 4 2020-01-09
## 11134 0 0 2020-01-09
## 11135 68 2 2020-01-09
## 11136 8 1 2020-01-09
## 11137 12 12 2020-01-09
## 11138 12 1 2020-01-09
## 11139 38 1 2020-01-09
## 11140 2 0 2020-01-09
## 11141 3 3 2020-01-09
## 11142 0 0 2020-01-09
## 11143 0 0 2020-01-09
## 11144 0 0 2020-01-09
## 11145 0 0 2020-01-09
## 11146 3 1 2020-01-09
## 11147 0 0 2020-01-09
## 11148 11 0 2020-01-09
## 11149 45 2 2020-01-09
## 11150 14 1 2020-01-09
## 11151 0 0 2020-01-09
## 11152 1 0 2020-01-09
## 11153 3 0 2020-01-09
## 11154 6 1 2020-01-09
## 11155 1 0 2020-01-09
## 11156 6 0 2020-01-09
## 11157 25 2 2020-01-09
## 11158 0 0 2020-01-09
## 11159 11 0 2020-01-09
## 11160 24 1 2020-01-09
## 11161 27 8 2020-01-09
## 11162 0 0 2020-01-09
## 11163 11 1 2020-01-09
## 11164 138 18 2020-01-09
## 11165 5 0 2020-01-09
## 11166 6 0 2020-01-09
## 11167 12 0 2020-01-09
## 11168 0 0 2020-01-09
## 11169 6 0 2020-01-09
## 11170 1 0 2020-01-09
## 11171 0 0 2020-01-09
## 11172 0 0 2020-01-09
## 11173 4 0 2020-01-09
## 11174 0 0 2020-01-09
## 11175 0 0 2020-01-09
## 11176 8 1 2020-01-09
## 11177 0 0 2020-01-09
## 11178 42 2 2020-01-09
## 11179 16 1 2020-01-09
## 11180 5 0 2020-01-09
## 11181 0 0 2020-01-09
## 11182 0 0 2020-01-09
## 11183 0 0 2020-01-09
## 11184 0 0 2020-01-09
## 11185 9 0 2020-01-09
## 11186 0 0 2020-01-09
## 11187 135 52 2020-01-09
## 11188 12 1 2020-01-09
## 11189 5 1 2020-01-09
## 11190 6 1 2020-01-09
## 11191 5 0 2020-01-09
## 11192 13 0 2020-01-09
## 11193 18 2 2020-01-09
## 11194 2 0 2020-01-09
## 11195 0 0 2020-01-09
## 11196 5 0 2020-01-09
## 11197 0 0 2020-01-09
## 11198 0 0 2020-01-09
## 11199 244 10 2020-01-09
## 11200 0 0 2020-01-09
## 11201 0 0 2020-01-09
## 11202 6 1 2020-01-09
## 11203 0 0 2020-01-09
## 11204 14 0 2020-01-09
## 11205 7 0 2020-01-09
## 11206 7 1 2020-01-09
## 11207 8 0 2020-01-09
## 11208 36 3 2020-01-09
## 11209 0 0 2020-01-09
## 11210 2 0 2020-01-09
## 11211 12 1 2020-01-09
## 11212 3 1 2020-01-09
## 11213 0 0 2020-01-09
## 11214 6 0 2020-01-09
## 11215 11 0 2020-01-09
## 11216 0 0 2020-01-09
## 11217 13 0 2020-01-09
## 11218 14 1 2020-01-09
## 11219 8 0 2020-01-09
## 11220 42 5 2020-01-09
## 11221 11 0 2020-01-09
## 11222 1 0 2020-01-09
## 11223 0 0 2020-01-09
## 11224 2 0 2020-01-09
## 11225 6 3 2020-01-09
## 11226 4 3 2020-01-09
## 11227 91 8 2020-01-09
## 11228 9 0 2020-01-09
## 11229 14 1 2020-01-09
## 11230 149 69 2020-01-09
## 11231 12 1 2020-01-09
## 11232 5 0 2020-01-09
## 11233 0 0 2020-01-09
## 11234 0 0 2020-01-09
## 11235 11 1 2020-01-09
## 11236 1 0 2020-01-09
## 11237 0 0 2020-01-09
## 11238 8 0 2020-01-09
## 11239 17 1 2020-01-09
## 11240 35 6 2020-01-09
## 11241 48 9 2020-01-09
## 11242 10 0 2020-01-09
## 11243 2 0 2020-01-09
## 11244 2 1 2020-01-09
## 11245 0 0 2020-01-09
## 11246 0 0 2020-01-09
## 11247 14 0 2020-01-09
## 11248 1 1 2020-01-09
## 11249 9 1 2020-01-09
## 11250 9 10 2020-01-09
## 11251 6 5 2020-01-09
## 11252 9 3 2020-01-09
## 11253 28 1 2020-01-09
## 11254 15 1 2020-01-09
## 11255 98 5 2020-01-09
## 11256 1 0 2020-01-09
## 11257 2 1 2020-01-09
## 11258 0 0 2020-01-09
## 11259 7 0 2020-01-09
## 11260 5 0 2020-01-09
## 11261 11 1 2020-01-09
## 11262 9 0 2020-01-09
## 11263 11 0 2020-01-09
## 11264 85 28 2020-01-09
## 11265 10 0 2020-01-09
## 11266 5 0 2020-01-09
## 11267 2 0 2020-01-09
## 11268 85 1 2020-01-09
## 11269 0 0 2020-01-09
## 11270 9 0 2020-01-09
## 11271 5 0 2020-01-09
## 11272 2 0 2020-01-09
## 11273 3 0 2020-01-09
## 11274 0 0 2020-01-09
## 11275 44 5 2020-01-09
## 11276 73 29 2020-01-09
## 11277 16 4 2020-01-09
## 11278 7 0 2020-01-09
## 11279 0 0 2020-01-09
## 11280 87 12 2020-01-09
## 11281 64 0 2020-01-09
## 11282 1 0 2020-01-09
## 11283 14 0 2020-01-09
## 11284 16 2 2020-01-09
## 11285 16 8 2020-01-09
## 11286 12 9 2020-01-09
## 11287 4 0 2020-01-09
## 11288 3 1 2020-01-09
## 11289 1 0 2020-01-09
## 11290 8 0 2020-01-09
## 11291 0 0 2020-01-09
## 11292 2 2 2020-01-09
## 11293 14 1 2020-01-09
## 11294 2 0 2020-01-09
## 11295 127 0 2020-01-09
## 11296 0 0 2020-01-09
## 11297 4 0 2020-01-09
## 11298 9 0 2020-01-09
## 11299 5 0 2020-01-09
## 11300 4 1 2020-01-09
## 11301 2 0 2020-01-09
## 11302 5 1 2020-01-09
## 11303 108 69 2020-01-09
## 11304 4 0 2020-01-09
## 11305 11 0 2020-01-09
## 11306 7 3 2020-01-09
## 11307 3 0 2020-01-09
## 11308 151 3 2020-01-09
## 11309 7 0 2020-01-09
## 11310 4 0 2020-01-09
## 11311 11 5 2020-01-09
## 11312 0 0 2020-01-09
## 11313 7 0 2020-01-09
## 11314 2 0 2020-01-09
## 11315 7 1 2020-01-09
## 11316 8 1 2020-01-09
## 11317 1 0 2020-01-09
## 11318 6 0 2020-01-09
## 11319 6 0 2020-01-09
## 11320 138 16 2020-01-09
## 11321 6 1 2020-01-09
## 11322 7 2 2020-01-09
## 11323 14 4 2020-01-09
## 11324 0 0 2020-01-09
## 11325 0 0 2020-01-09
## 11326 35 4 2020-01-09
## 11327 0 0 2020-01-09
## 11328 1 0 2020-01-09
## 11329 226 14 2020-01-09
## 11330 7 0 2020-01-09
## 11331 0 0 2020-01-09
## 11332 3 0 2020-01-09
## 11333 0 0 2020-01-09
## 11334 5 0 2020-01-09
## 11335 7 1 2020-01-09
## 11336 0 0 2020-01-09
## 11337 6 0 2020-01-09
## 11338 7 1 2020-01-09
## 11339 4 0 2020-01-09
## 11340 0 0 2020-01-09
## 11341 0 0 2020-01-09
## 11342 89 3 2020-01-09
## 11343 46 6 2020-01-09
## 11344 73 3 2020-01-09
## 11345 26 0 2020-01-09
## 11346 0 0 2020-01-09
## 11347 0 0 2020-01-09
## 11348 5 1 2020-01-09
## 11349 8 2 2020-01-09
## 11350 0 0 2020-01-09
## 11351 244 48 2020-01-09
## 11352 11 1 2020-01-09
## 11353 8 2 2020-01-09
## 11354 0 0 2020-01-09
## 11355 7 0 2020-01-09
## 11356 0 0 2020-01-09
## 11357 2 0 2020-01-09
## 11358 33 2 2020-01-09
## 11359 5 0 2020-01-10
## 11360 0 0 2020-01-10
## 11361 71 2 2020-01-10
## 11362 3 1 2020-01-10
## 11363 7 0 2020-01-10
## 11364 5 0 2020-01-10
## 11365 58 0 2020-01-10
## 11366 0 0 2020-01-10
## 11367 11 0 2020-01-10
## 11368 15 1 2020-01-10
## 11369 0 0 2020-01-10
## 11370 7 4 2020-01-10
## 11371 4 1 2020-01-10
## 11372 0 0 2020-01-10
## 11373 2 0 2020-01-10
## 11374 159 7 2020-01-10
## 11375 22 1 2020-01-10
## 11376 16 2 2020-01-10
## 11377 2 0 2020-01-10
## 11378 0 0 2020-01-10
## 11379 5 0 2020-01-10
## 11380 0 0 2020-01-10
## 11381 4 0 2020-01-10
## 11382 53 7 2020-01-10
## 11383 0 0 2020-01-10
## 11384 10 0 2020-01-10
## 11385 8 2 2020-01-10
## 11386 41 0 2020-01-10
## 11387 9 1 2020-01-10
## 11388 23 1 2020-01-10
## 11389 0 0 2020-01-10
## 11390 5 0 2020-01-10
## 11391 2 1 2020-01-10
## 11392 12 4 2020-01-10
## 11393 7 3 2020-01-10
## 11394 15 0 2020-01-10
## 11395 67 3 2020-01-10
## 11396 17 12 2020-01-10
## 11397 8 1 2020-01-10
## 11398 0 0 2020-01-10
## 11399 53 1 2020-01-10
## 11400 10 0 2020-01-10
## 11401 0 0 2020-01-10
## 11402 62 0 2020-01-10
## 11403 15 0 2020-01-10
## 11404 3 0 2020-01-10
## 11405 66 11 2020-01-10
## 11406 44 1 2020-01-10
## 11407 41 7 2020-01-10
## 11408 21 3 2020-01-10
## 11409 2 1 2020-01-10
## 11410 0 0 2020-01-10
## 11411 30 5 2020-01-10
## 11412 41 3 2020-01-10
## 11413 71 2 2020-01-10
## 11414 98 0 2020-01-10
## 11415 0 0 2020-01-10
## 11416 17 1 2020-01-10
## 11417 4 0 2020-01-10
## 11418 18 0 2020-01-10
## 11419 10 0 2020-01-10
## 11420 41 1 2020-01-10
## 11421 1 0 2020-01-10
## 11422 4 0 2020-01-10
## 11423 9 1 2020-01-10
## 11424 11 0 2020-01-10
## 11425 120 7 2020-01-10
## 11426 0 0 2020-01-10
## 11427 7 0 2020-01-10
## 11428 8 2 2020-01-10
## 11429 71 4 2020-01-10
## 11430 24 3 2020-01-10
## 11431 3 0 2020-01-10
## 11432 20 3 2020-01-10
## 11433 1 0 2020-01-10
## 11434 74 1 2020-01-10
## 11435 2 1 2020-01-10
## 11436 3 0 2020-01-10
## 11437 4 0 2020-01-10
## 11438 2 0 2020-01-10
## 11439 1 0 2020-01-10
## 11440 19 0 2020-01-10
## 11441 3 0 2020-01-10
## 11442 1 0 2020-01-10
## 11443 6 0 2020-01-10
## 11444 50 2 2020-01-10
## 11445 32 1 2020-01-10
## 11446 22 4 2020-01-10
## 11447 1 0 2020-01-10
## 11448 17 0 2020-01-10
## 11449 1 1 2020-01-10
## 11450 34 3 2020-01-10
## 11451 2 1 2020-01-10
## 11452 15 1 2020-01-10
## 11453 0 0 2020-01-10
## 11454 495 9 2020-01-10
## 11455 3 0 2020-01-10
## 11456 3 2 2020-01-10
## 11457 71 4 2020-01-10
## 11458 24 3 2020-01-10
## 11459 56 3 2020-01-10
## 11460 1 1 2020-01-10
## 11461 9 4 2020-01-10
## 11462 24 4 2020-01-10
## 11463 0 0 2020-01-10
## 11464 11 0 2020-01-10
## 11465 0 0 2020-01-10
## 11466 5 0 2020-01-10
## 11467 1 0 2020-01-10
## 11468 1 0 2020-01-10
## 11469 10 0 2020-01-10
## 11470 113 2 2020-01-10
## 11471 4 1 2020-01-10
## 11472 30 1 2020-01-10
## 11473 1 0 2020-01-10
## 11474 10 0 2020-01-10
## 11475 4 0 2020-01-10
## 11476 2 0 2020-01-10
## 11477 3 0 2020-01-10
## 11478 18 0 2020-01-10
## 11479 0 0 2020-01-10
## 11480 15 1 2020-01-10
## 11481 3 0 2020-01-10
## 11482 6 0 2020-01-10
## 11483 0 0 2020-01-10
## 11484 1 0 2020-01-10
## 11485 0 0 2020-01-10
## 11486 3 1 2020-01-10
## 11487 1 0 2020-01-10
## 11488 7 0 2020-01-10
## 11489 0 0 2020-01-10
## 11490 119 11 2020-01-10
## 11491 29 2 2020-01-10
## 11492 5 0 2020-01-10
## 11493 3 0 2020-01-10
## 11494 1 0 2020-01-10
## 11495 1 0 2020-01-10
## 11496 8 0 2020-01-10
## 11497 51 2 2020-01-10
## 11498 2 1 2020-01-10
## 11499 10 2 2020-01-10
## 11500 1 0 2020-01-10
## 11501 7 1 2020-01-10
## 11502 57 12 2020-01-10
## 11503 5 0 2020-01-10
## 11504 8 0 2020-01-10
## 11505 0 0 2020-01-10
## 11506 0 0 2020-01-10
## 11507 4 0 2020-01-10
## 11508 136 2 2020-01-10
## 11509 0 0 2020-01-10
## 11510 3 0 2020-01-10
## 11511 0 0 2020-01-10
## 11512 30 2 2020-01-10
## 11513 60 4 2020-01-10
## 11514 1 0 2020-01-10
## 11515 1 0 2020-01-10
## 11516 0 1 2020-01-10
## 11517 7 0 2020-01-10
## 11518 7 3 2020-01-10
## 11519 10 1 2020-01-10
## 11520 1 0 2020-01-10
## 11521 3 0 2020-01-10
## 11522 2 0 2020-01-10
## 11523 252 21 2020-01-10
## 11524 1 0 2020-01-10
## 11525 0 1 2020-01-10
## 11526 2 1 2020-01-10
## 11527 0 0 2020-01-10
## 11528 5 2 2020-01-10
## 11529 1 0 2020-01-10
## 11530 25 1 2020-01-10
## 11531 55 2 2020-01-10
## 11532 0 0 2020-01-10
## 11533 3 0 2020-01-10
## 11534 1 0 2020-01-10
## 11535 23 1 2020-01-10
## 11536 3 0 2020-01-10
## 11537 4 0 2020-01-10
## 11538 1 0 2020-01-10
## 11539 7 0 2020-01-10
## 11540 1 0 2020-01-10
## 11541 2 0 2020-01-10
## 11542 2 0 2020-01-10
## 11543 7 0 2020-01-10
## 11544 64 7 2020-01-10
## 11545 0 0 2020-01-10
## 11546 0 0 2020-01-10
## 11547 4 0 2020-01-10
## 11548 0 0 2020-01-10
## 11549 5 0 2020-01-10
## 11550 5 0 2020-01-10
## 11551 0 0 2020-01-10
## 11552 5 2 2020-01-10
## 11553 51 1 2020-01-10
## 11554 0 0 2020-01-10
## 11555 1 0 2020-01-10
## 11556 44 1 2020-01-10
## 11557 0 0 2020-01-10
## 11558 2 1 2020-01-10
## 11559 40 1 2020-01-10
## 11560 3 0 2020-01-10
## 11561 114 1 2020-01-10
## 11562 1 0 2020-01-10
## 11563 3 0 2020-01-10
## 11564 12 0 2020-01-10
## 11565 0 0 2020-01-10
## 11566 2 0 2020-01-10
## 11567 6 0 2020-01-10
## 11568 28 2 2020-01-10
## 11569 13 0 2020-01-10
## 11570 0 0 2020-01-10
## 11571 0 0 2020-01-10
## 11572 18 0 2020-01-10
## 11573 4 0 2020-01-10
## 11574 9 3 2020-01-10
## 11575 26 2 2020-01-10
## 11576 8 1 2020-01-10
## 11577 1 0 2020-01-10
## 11578 19 1 2020-01-10
## 11579 8 0 2020-01-10
## 11580 47 1 2020-01-10
## 11581 0 0 2020-01-10
## 11582 1 1 2020-01-10
## 11583 304 17 2020-01-10
## 11584 11 3 2020-01-10
## 11585 2 1 2020-01-10
## 11586 55 6 2020-01-10
## 11587 16 1 2020-01-10
## 11588 0 0 2020-01-10
## 11589 88 15 2020-01-10
## 11590 2 0 2020-01-10
## 11591 7 0 2020-01-10
## 11592 5 0 2020-01-10
## 11593 108 9 2020-01-10
## 11594 7 0 2020-01-10
## 11595 1 0 2020-01-10
## 11596 14 3 2020-01-10
## 11597 18 6 2020-01-10
## 11598 13 0 2020-01-09
## 11599 2 0 2020-01-09
## 11600 12 3 2020-01-09
## 11601 55 4 2020-01-09
## 11602 85 5 2020-01-09
## 11603 16 0 2020-01-09
## 11604 7 0 2020-01-09
## 11605 3 0 2020-01-09
## 11606 10 0 2020-01-09
## 11607 15 2 2020-01-09
## 11608 10 0 2020-01-09
## 11609 3 1 2020-01-09
## 11610 1 0 2020-01-09
## 11611 5 0 2020-01-09
## 11612 12 0 2020-01-09
## 11613 0 0 2020-01-09
## 11614 109 3 2020-01-09
## 11615 6 0 2020-01-09
## 11616 121 2 2020-01-09
## 11617 3 0 2020-01-09
## 11618 5 0 2020-01-09
## 11619 6 2 2020-01-09
## 11620 11 0 2020-01-09
## 11621 3 0 2020-01-09
## 11622 6 1 2020-01-09
## 11623 4 1 2020-01-09
## 11624 44 3 2020-01-09
## 11625 31 2 2020-01-09
## 11626 3 1 2020-01-09
## 11627 17 4 2020-01-09
## 11628 0 0 2020-01-09
## 11629 4 1 2020-01-09
## 11630 16 0 2020-01-09
## 11631 5 0 2020-01-09
## 11632 5 0 2020-01-09
## 11633 2 0 2020-01-09
## 11634 2 0 2020-01-09
## 11635 0 0 2020-01-09
## 11636 16 0 2020-01-09
## 11637 84 4 2020-01-09
## 11638 0 0 2020-01-09
## 11639 27 4 2020-01-09
## 11640 2 0 2020-01-09
## 11641 4 0 2020-01-09
## 11642 4 0 2020-01-09
## 11643 0 0 2020-01-09
## 11644 1 0 2020-01-09
## 11645 8 0 2020-01-09
## 11646 2 0 2020-01-09
## 11647 6 0 2020-01-09
## 11648 2 1 2020-01-09
## 11649 7 1 2020-01-09
## 11650 1 1 2020-01-09
## 11651 4 1 2020-01-09
## 11652 29 5 2020-01-09
## 11653 5 0 2020-01-09
## 11654 2 0 2020-01-09
## 11655 5 0 2020-01-09
## 11656 11 0 2020-01-09
## 11657 12 0 2020-01-09
## 11658 3 1 2020-01-09
## 11659 3 0 2020-01-09
## 11660 65 4 2020-01-09
## 11661 0 0 2020-01-09
## 11662 2 0 2020-01-09
## 11663 49 0 2020-01-09
## 11664 0 0 2020-01-09
## 11665 7 1 2020-01-09
## 11666 257 11 2020-01-09
## 11667 10 1 2020-01-09
## 11668 3 0 2020-01-09
## 11669 9 0 2020-01-09
## 11670 56 4 2020-01-09
## 11671 12 1 2020-01-09
## 11672 42 0 2020-01-09
## 11673 26 0 2020-01-09
## 11674 15 1 2020-01-09
## 11675 9 1 2020-01-09
## 11676 2 1 2020-01-09
## 11677 4 0 2020-01-09
## 11678 6 0 2020-01-09
## 11679 4 0 2020-01-09
## 11680 18 1 2020-01-09
## 11681 15 1 2020-01-09
## 11682 4 0 2020-01-09
## 11683 2 0 2020-01-09
## 11684 7 0 2020-01-09
## 11685 14 0 2020-01-09
## 11686 30 7 2020-01-09
## 11687 0 0 2020-01-09
## 11688 1 0 2020-01-09
## 11689 2 0 2020-01-09
## 11690 5 0 2020-01-09
## 11691 0 0 2020-01-09
## 11692 6 1 2020-01-09
## 11693 41 0 2020-01-09
## 11694 4 0 2020-01-09
## 11695 5 0 2020-01-09
## 11696 16 3 2020-01-09
## 11697 2 0 2020-01-09
## 11698 9 5 2020-01-09
## 11699 6 1 2020-01-09
## 11700 16 2 2020-01-09
## 11701 12 1 2020-01-09
## 11702 15 0 2020-01-09
## 11703 0 0 2020-01-09
## 11704 2 0 2020-01-09
## 11705 6 1 2020-01-09
## 11706 66 6 2020-01-09
## 11707 17 1 2020-01-09
## 11708 52 2 2020-01-09
## 11709 10 0 2020-01-09
## 11710 12 2 2020-01-09
## 11711 5 0 2020-01-09
## 11712 3 1 2020-01-09
## 11713 7 0 2020-01-09
## 11714 8 0 2020-01-09
## 11715 0 0 2020-01-09
## 11716 4 0 2020-01-09
## 11717 14 3 2020-01-09
## 11718 0 0 2020-01-09
## 11719 0 0 2020-01-09
## 11720 0 0 2020-01-09
## 11721 11 0 2020-01-09
## 11722 18 4 2020-01-09
## 11723 2 1 2020-01-09
## 11724 3 0 2020-01-09
## 11725 8 11 2020-01-09
## 11726 5 0 2020-01-09
## 11727 8 0 2020-01-09
## 11728 2 0 2020-01-09
## 11729 60 14 2020-01-09
## 11730 394 169 2020-01-09
## 11731 113 2 2020-01-09
## 11732 28 5 2020-01-09
## 11733 4 0 2020-01-09
## 11734 4 0 2020-01-09
## 11735 6 0 2020-01-09
## 11736 4 0 2020-01-09
## 11737 4 0 2020-01-09
## 11738 2 2 2020-01-09
## 11739 4 0 2020-01-09
## 11740 9 0 2020-01-09
## 11741 4 0 2020-01-09
## 11742 455 27 2020-01-09
## 11743 49 1 2020-01-09
## 11744 3 0 2020-01-09
## 11745 63 5 2020-01-09
## 11746 24 0 2020-01-09
## 11747 0 0 2020-01-09
## 11748 2 0 2020-01-09
## 11749 12 0 2020-01-09
## 11750 10 2 2020-01-09
## 11751 47 1 2020-01-09
## 11752 85 2 2020-01-09
## 11753 24 3 2020-01-09
## 11754 11 4 2020-01-09
## 11755 3 1 2020-01-09
## 11756 2 0 2020-01-09
## 11757 0 0 2020-01-09
## 11758 6 0 2020-01-09
## 11759 14 2 2020-01-09
## 11760 9 6 2020-01-09
## 11761 5 0 2020-01-09
## 11762 45 3 2020-01-09
## 11763 14 2 2020-01-09
## 11764 2 0 2020-01-09
## 11765 109 1 2020-01-09
## 11766 4 0 2020-01-09
## 11767 15 8 2020-01-09
## 11768 0 0 2020-01-09
## 11769 1 0 2020-01-09
## 11770 6 0 2020-01-09
## 11771 0 0 2020-01-09
## 11772 2 1 2020-01-09
## 11773 2 2 2020-01-09
## 11774 7 0 2020-01-09
## 11775 0 0 2020-01-09
## 11776 16 3 2020-01-09
## 11777 0 0 2020-01-09
## 11778 0 0 2020-01-09
## 11779 4 0 2020-01-09
## 11780 21 1 2020-01-09
## 11781 0 0 2020-01-09
## 11782 1 0 2020-01-09
## 11783 29 0 2020-01-09
## 11784 0 0 2020-01-09
## 11785 1198 16 2020-01-09
## 11786 6 2 2020-01-09
## 11787 10 2 2020-01-09
## 11788 74 0 2020-01-09
## 11789 5 1 2020-01-09
## 11790 2 0 2020-01-09
## 11791 6 0 2020-01-09
## 11792 1 0 2020-01-09
## 11793 10 1 2020-01-09
## 11794 0 0 2020-01-09
## 11795 52 0 2020-01-09
## 11796 23 1 2020-01-09
## 11797 14 1 2020-01-09
## 11798 27 3 2020-01-09
## 11799 24 5 2020-01-09
## 11800 73 12 2020-01-09
## 11801 7 0 2020-01-09
## 11802 1 1 2020-01-09
## 11803 1 0 2020-01-09
## 11804 0 0 2020-01-09
## 11805 2 4 2020-01-09
## 11806 62 5 2020-01-09
## 11807 5 2 2020-01-09
## 11808 21 4 2020-01-09
## 11809 8 0 2020-01-09
## 11810 43 6 2020-01-09
## 11811 2 0 2020-01-09
## 11812 9 0 2020-01-09
## 11813 7 1 2020-01-09
## 11814 4 3 2020-01-09
## 11815 77 2 2020-01-09
## 11816 6 0 2020-01-09
## 11817 11 3 2020-01-09
## 11818 5 0 2020-01-09
## 11819 14 2 2020-01-09
## 11820 169 7 2020-01-09
## 11821 2 0 2020-01-09
## 11822 0 0 2020-01-09
## 11823 14 0 2020-01-09
## 11824 47 2 2020-01-09
## 11825 7 1 2020-01-09
## 11826 3 0 2020-01-09
## 11827 145 3 2020-01-09
## 11828 8 1 2020-01-09
## 11829 86 9 2020-01-09
## 11830 2 0 2020-01-09
## 11831 41 4 2020-01-09
## 11832 2 1 2020-01-09
## 11833 9 0 2020-01-09
## 11834 292 11 2020-01-09
## 11835 2 0 2020-01-09
## 11836 6 0 2020-01-09
## 11837 0 0 2020-01-09
## 11838 8 1 2020-01-09
## 11839 14 1 2020-01-09
## 11840 7 0 2020-01-09
## 11841 0 0 2020-01-09
## 11842 17 4 2020-01-09
## 11843 13 0 2020-01-09
## 11844 3 0 2020-01-09
## 11845 94 11 2020-01-09
## 11846 9 0 2020-01-09
## 11847 20 1 2020-01-09
## 11848 6 0 2020-01-09
## 11849 6 2 2020-01-09
## 11850 3 3 2020-01-09
## 11851 40 0 2020-01-09
## 11852 0 0 2020-01-09
## 11853 0 0 2020-01-09
## 11854 10 2 2020-01-09
## 11855 39 7 2020-01-09
## 11856 4 0 2020-01-09
## 11857 2 0 2020-01-09
## 11858 202 8 2020-01-09
## 11859 0 0 2020-01-10
## 11860 92 21 2020-01-10
## 11861 2 0 2020-01-10
## 11862 30 2 2020-01-10
## 11863 19 0 2020-01-10
## 11864 12 0 2020-01-10
## 11865 4 0 2020-01-10
## 11866 4 0 2020-01-10
## 11867 34 1 2020-01-10
## 11868 14 0 2020-01-10
## 11869 4 1 2020-01-10
## 11870 8 0 2020-01-10
## 11871 0 0 2020-01-10
## 11872 6 1 2020-01-10
## 11873 7 1 2020-01-10
## 11874 48 3 2020-01-10
## 11875 0 0 2020-01-10
## 11876 17 3 2020-01-10
## 11877 11 1 2020-01-10
## 11878 0 0 2020-01-10
## 11879 69 2 2020-01-10
## 11880 8 0 2020-01-10
## 11881 5 1 2020-01-10
## 11882 12 0 2020-01-10
## 11883 0 0 2020-01-10
## 11884 8 1 2020-01-10
## 11885 15 1 2020-01-10
## 11886 226 5 2020-01-10
## 11887 0 0 2020-01-10
## 11888 25 1 2020-01-10
## 11889 2 0 2020-01-10
## 11890 7 0 2020-01-10
## 11891 21 13 2020-01-10
## 11892 15 1 2020-01-10
## 11893 8 0 2020-01-10
## 11894 0 0 2020-01-10
## 11895 4 0 2020-01-10
## 11896 14 0 2020-01-10
## 11897 85 7 2020-01-10
## 11898 2 0 2020-01-10
## 11899 23 0 2020-01-10
## 11900 0 0 2020-01-10
## 11901 12 3 2020-01-10
## 11902 11 0 2020-01-10
## 11903 11 3 2020-01-10
## 11904 12 0 2020-01-10
## 11905 0 0 2020-01-10
## 11906 0 0 2020-01-10
## 11907 77 12 2020-01-10
## 11908 2 1 2020-01-10
## 11909 11 1 2020-01-10
## 11910 13 7 2020-01-10
## 11911 0 0 2020-01-10
## 11912 0 0 2020-01-10
## 11913 14 0 2020-01-10
## 11914 3 0 2020-01-10
## 11915 5 1 2020-01-10
## 11916 1 0 2020-01-10
## 11917 22 6 2020-01-10
## 11918 496 47 2020-01-10
## 11919 156 28 2020-01-10
## 11920 0 0 2020-01-10
## 11921 60 3 2020-01-10
## 11922 20 0 2020-01-10
## 11923 7 2 2020-01-10
## 11924 6 2 2020-01-10
## 11925 8 6 2020-01-10
## 11926 3 0 2020-01-10
## 11927 2 1 2020-01-10
## 11928 13 0 2020-01-10
## 11929 0 0 2020-01-10
## 11930 3099 114 2020-01-10
## 11931 8 0 2020-01-10
## 11932 202 13 2020-01-10
## 11933 9 0 2020-01-10
## 11934 0 0 2020-01-10
## 11935 12 1 2020-01-10
## 11936 0 0 2020-01-10
## 11937 83 1 2020-01-10
## 11938 1 1 2020-01-10
## 11939 10 4 2020-01-10
## 11940 7 2 2020-01-10
## 11941 0 0 2020-01-10
## 11942 8 0 2020-01-10
## 11943 73 0 2020-01-10
## 11944 35 2 2020-01-10
## 11945 1 0 2020-01-10
## 11946 23 3 2020-01-10
## 11947 8 0 2020-01-10
## 11948 126 4 2020-01-10
## 11949 9 0 2020-01-10
## 11950 0 0 2020-01-10
## 11951 0 0 2020-01-10
## 11952 10 0 2020-01-10
## 11953 4 1 2020-01-10
## 11954 28 2 2020-01-10
## 11955 4 1 2020-01-10
## 11956 0 0 2020-01-10
## 11957 533 47 2020-01-10
## 11958 119 13 2020-01-10
## 11959 39 6 2020-01-10
## 11960 0 0 2020-01-10
## 11961 198 4 2020-01-10
## 11962 31 13 2020-01-10
## 11963 54 19 2020-01-10
## 11964 2 0 2020-01-10
## 11965 3 5 2020-01-10
## 11966 2 0 2020-01-10
## 11967 5 1 2020-01-10
## 11968 4 0 2020-01-10
## 11969 0 0 2020-01-10
## 11970 12 6 2020-01-10
## 11971 80 6 2020-01-10
## 11972 14 1 2020-01-10
## 11973 13 7 2020-01-10
## 11974 20 6 2020-01-10
## 11975 29 0 2020-01-10
## 11976 37 0 2020-01-10
## 11977 0 0 2020-01-10
## 11978 3 0 2020-01-10
## 11979 212 9 2020-01-10
## 11980 1 1 2020-01-10
## 11981 0 0 2020-01-10
## 11982 4 0 2020-01-10
## 11983 9 1 2020-01-10
## 11984 22 4 2020-01-10
## 11985 3 0 2020-01-10
## 11986 3 0 2020-01-10
## 11987 237 9 2020-01-10
## 11988 81 0 2020-01-10
## 11989 2 0 2020-01-10
## 11990 1 0 2020-01-10
## 11991 9 1 2020-01-10
## 11992 8 1 2020-01-10
## 11993 13 3 2020-01-10
## 11994 1 0 2020-01-10
## 11995 7 3 2020-01-10
## 11996 6 0 2020-01-10
## 11997 2 1 2020-01-10
## 11998 32 0 2020-01-10
## 11999 8 0 2020-01-10
## 12000 9 0 2020-01-10
## 12001 17 3 2020-01-10
## 12002 22 1 2020-01-10
## 12003 21 2 2020-01-10
## 12004 61 0 2020-01-10
## 12005 59 13 2020-01-10
## 12006 0 0 2020-01-10
## 12007 0 0 2020-01-10
## 12008 4 0 2020-01-10
## 12009 0 0 2020-01-10
## 12010 0 0 2020-01-10
## 12011 15 1 2020-01-10
## 12012 41 20 2020-01-10
## 12013 1 0 2020-01-10
## 12014 5 0 2020-01-10
## 12015 0 0 2020-01-10
## 12016 0 0 2020-01-10
## 12017 0 0 2020-01-10
## 12018 30 1 2020-01-10
## 12019 1 0 2020-01-10
## 12020 16 2 2020-01-10
## 12021 11 1 2020-01-10
## 12022 0 0 2020-01-10
## 12023 2 0 2020-01-10
## 12024 0 0 2020-01-10
## 12025 4 1 2020-01-10
## 12026 0 0 2020-01-10
## 12027 7 2 2020-01-10
## 12028 0 0 2020-01-10
## 12029 2 0 2020-01-10
## 12030 135 7 2020-01-10
## 12031 0 0 2020-01-10
## 12032 38 0 2020-01-10
## 12033 3 0 2020-01-10
## 12034 0 0 2020-01-10
## 12035 33 9 2020-01-10
## 12036 0 0 2020-01-10
## 12037 0 0 2020-01-10
## 12038 40 3 2020-01-10
## 12039 0 0 2020-01-10
## 12040 0 0 2020-01-10
## 12041 0 0 2020-01-10
## 12042 12 0 2020-01-10
## 12043 14 3 2020-01-10
## 12044 7 0 2020-01-10
## 12045 18 1 2020-01-10
## 12046 4 0 2020-01-10
## 12047 28 7 2020-01-10
## 12048 0 0 2020-01-10
## 12049 26 3 2020-01-10
## 12050 19 3 2020-01-10
## 12051 0 0 2020-01-10
## 12052 0 0 2020-01-10
## 12053 0 0 2020-01-10
## 12054 24 1 2020-01-10
## 12055 0 0 2020-01-10
## 12056 16 0 2020-01-10
## 12057 7 1 2020-01-10
## 12058 5 1 2020-01-10
## 12059 69 0 2020-01-10
## 12060 14 6 2020-01-10
## 12061 2 0 2020-01-10
## 12062 11 1 2020-01-10
## 12063 0 0 2020-01-10
## 12064 0 0 2020-01-10
## 12065 68 3 2020-01-10
## 12066 162 18 2020-01-10
## 12067 1 1 2020-01-10
## 12068 0 0 2020-01-10
## 12069 12 4 2020-01-10
## 12070 0 0 2020-01-10
## 12071 10 0 2020-01-10
## 12072 1 0 2020-01-10
## 12073 1 4 2020-01-10
## 12074 0 0 2020-01-10
## 12075 0 0 2020-01-10
## 12076 0 0 2020-01-10
## 12077 8 0 2020-01-10
## 12078 7 2 2020-01-10
## 12079 19 2 2020-01-10
## 12080 4 0 2020-01-10
## 12081 3 0 2020-01-10
## 12082 0 0 2020-01-10
## 12083 0 0 2020-01-10
## 12084 0 1 2020-01-10
## 12085 3 0 2020-01-10
## 12086 97 3 2020-01-10
## 12087 9 1 2020-01-10
## 12088 48 5 2020-01-10
## 12089 7 1 2020-01-10
## 12090 0 0 2020-01-10
## 12091 109 3 2020-01-10
## 12092 0 0 2020-01-10
## 12093 9 0 2020-01-10
## 12094 165 5 2020-01-10
## 12095 9 0 2020-01-10
## 12096 17 2 2020-01-10
## 12097 1 0 2020-01-10
## 12098 10 0 2020-01-10
## 12099 0 0 2020-01-10
## 12100 52 9 2020-01-10
## 12101 6 2 2020-01-10
## 12102 33 16 2020-01-10
## 12103 0 0 2020-01-10
## 12104 81 1 2020-01-10
## 12105 1 0 2020-01-10
## 12106 0 0 2020-01-10
## 12107 26 4 2020-01-10
## 12108 0 0 2020-01-10
## 12109 31 3 2020-01-10
## 12110 15 0 2020-01-10
## 12111 0 0 2020-01-10
## 12112 0 0 2020-01-10
## 12113 7 1 2020-01-10
## 12114 9 1 2020-01-10
## 12115 10 3 2020-01-10
## 12116 18 2 2020-01-10
## 12117 0 0 2020-01-10
## 12118 0 0 2020-01-10
## 12119 31 3 2020-01-10
## 12120 37 3 2020-01-10
## 12121 58 1 2020-01-10
## 12122 6 0 2020-01-10
## 12123 5 0 2020-01-10
## 12124 5 0 2020-01-10
## 12125 3 0 2020-01-10
## 12126 22 0 2020-01-10
## 12127 6 1 2020-01-10
## 12128 28 1 2020-01-10
## 12129 208 29 2020-01-10
## 12130 0 0 2020-01-10
## 12131 0 0 2020-01-10
## 12132 4 0 2020-01-10
## 12133 9 4 2020-01-10
## 12134 2 0 2020-01-10
## 12135 14 3 2020-01-10
## 12136 0 0 2020-01-10
## 12137 62 0 2020-01-10
## 12138 0 0 2020-01-10
## 12139 735 19 2020-01-10
## 12140 0 0 2020-01-10
## 12141 0 0 2020-01-10
## 12142 23 5 2020-01-10
## 12143 68 6 2020-01-10
## 12144 6 1 2020-01-10
## 12145 2 0 2020-01-10
## 12146 4 0 2020-01-10
## 12147 36 5 2020-01-10
## 12148 6 2 2020-01-10
## 12149 23 2 2020-01-10
## 12150 0 0 2020-01-10
## 12151 19 1 2020-01-10
## 12152 2 0 2020-01-10
## 12153 36 1 2020-01-10
## 12154 4 1 2020-01-10
## 12155 8 2 2020-01-10
## 12156 16 1 2020-01-10
## 12157 0 0 2020-01-10
## 12158 4 0 2020-01-10
## 12159 0 0 2020-01-10
## 12160 7 0 2020-01-10
## 12161 0 0 2020-01-10
## 12162 10 0 2020-01-10
## 12163 7 0 2020-01-10
## 12164 12 1 2020-01-10
## 12165 33 0 2020-01-10
## 12166 10 0 2020-01-10
## 12167 318 5 2020-01-10
## 12168 0 0 2020-01-10
## 12169 7 1 2020-01-10
## 12170 13 31 2020-01-10
## 12171 12 0 2020-01-10
## 12172 34 0 2020-01-10
## 12173 21 1 2020-01-10
## 12174 0 0 2020-01-10
## 12175 18 4 2020-01-10
## 12176 33 9 2020-01-10
## 12177 1 0 2020-01-10
## 12178 0 0 2020-01-10
## 12179 6 6 2020-01-10
## 12180 1 0 2020-01-10
## 12181 0 0 2020-01-10
## 12182 7 0 2020-01-10
## 12183 0 0 2020-01-10
## 12184 15 0 2020-01-10
## 12185 15 1 2020-01-10
## 12186 8 1 2020-01-10
## 12187 24 2 2020-01-10
## 12188 12 3 2020-01-10
## 12189 35 1 2020-01-10
## 12190 2 0 2020-01-10
## 12191 14 1 2020-01-10
## 12192 0 0 2020-01-10
## 12193 3 0 2020-01-10
## 12194 2 4 2020-01-10
## 12195 10 0 2020-01-10
## 12196 0 0 2020-01-10
## 12197 8 4 2020-01-10
## 12198 0 0 2020-01-10
## 12199 11 1 2020-01-10
## 12200 0 0 2020-01-10
## 12201 63 20 2020-01-10
## 12202 103 0 2020-01-10
## 12203 25 7 2020-01-10
## 12204 42 1 2020-01-10
## 12205 157 4 2020-01-10
## 12206 0 0 2020-01-10
## 12207 0 0 2020-01-10
## 12208 0 0 2020-01-10
## 12209 6 0 2020-01-10
## 12210 0 0 2020-01-10
## 12211 10 1 2020-01-10
## 12212 7 0 2020-01-10
## 12213 3 0 2020-01-10
## 12214 74 25 2020-01-10
## 12215 81 2 2020-01-10
## 12216 0 0 2020-01-10
## 12217 0 0 2020-01-10
## 12218 31 0 2020-01-10
## 12219 29 4 2020-01-10
## 12220 15 0 2020-01-10
## 12221 35 16 2020-01-10
## 12222 0 0 2020-01-10
## 12223 3 4 2020-01-10
## 12224 4 0 2020-01-10
## 12225 178 22 2020-01-10
## 12226 5 0 2020-01-10
## 12227 74 1 2020-01-10
## 12228 4 2 2020-01-10
## 12229 1 0 2020-01-10
## 12230 2 0 2020-01-10
## 12231 24 5 2020-01-10
## 12232 0 0 2020-01-10
## 12233 6 1 2020-01-10
## 12234 3 0 2020-01-10
## 12235 20 6 2020-01-10
## 12236 2 1 2020-01-10
## 12237 13 11 2020-01-10
## 12238 0 0 2020-01-10
## 12239 38 7 2020-01-10
## 12240 32 0 2020-01-10
## 12241 7 6 2020-01-10
## 12242 33 1 2020-01-10
## 12243 6 0 2020-01-10
## 12244 0 0 2020-01-10
## 12245 0 0 2020-01-10
## 12246 28 0 2020-01-10
## 12247 9 0 2020-01-10
## 12248 0 0 2020-01-10
## 12249 28 10 2020-01-10
## 12250 0 0 2020-01-10
## 12251 0 0 2020-01-10
## 12252 3 0 2020-01-10
## 12253 153 5 2020-01-10
## 12254 1 2 2020-01-10
## 12255 74 5 2020-01-10
## 12256 16 1 2020-01-10
## 12257 21 2 2020-01-10
## 12258 8 0 2020-01-10
## 12259 6 0 2020-01-10
## 12260 8 0 2020-01-10
## 12261 0 0 2020-01-10
## 12262 8 1 2020-01-10
## 12263 9 2 2020-01-10
## 12264 7 0 2020-01-10
## 12265 0 0 2020-01-10
## 12266 34 3 2020-01-10
## 12267 8 1 2020-01-10
## 12268 0 0 2020-01-10
## 12269 0 0 2020-01-10
## 12270 145 10 2020-01-10
## 12271 0 0 2020-01-10
## 12272 18 0 2020-01-10
## 12273 0 0 2020-01-10
## 12274 0 0 2020-01-10
## 12275 9 2 2020-01-10
## 12276 1 0 2020-01-10
## 12277 4 4 2020-01-10
## 12278 4 1 2020-01-10
## 12279 10 0 2020-01-10
## 12280 8 6 2020-01-10
## 12281 0 0 2020-01-10
## 12282 0 0 2020-01-10
## 12283 4 0 2020-01-10
## 12284 18 3 2020-01-10
## 12285 5 0 2020-01-10
## 12286 4 0 2020-01-10
## 12287 92 0 2020-01-10
## 12288 0 0 2020-01-10
## 12289 0 0 2020-01-10
## 12290 21 3 2020-01-10
## 12291 0 0 2020-01-10
## 12292 29 2 2020-01-10
## 12293 0 1 2020-01-10
## 12294 15 2 2020-01-10
## 12295 142 1 2020-01-10
## 12296 27 2 2020-01-10
## 12297 5 1 2020-01-10
## 12298 7 0 2020-01-10
## 12299 6 0 2020-01-10
## 12300 54 1 2020-01-10
## 12301 5 2 2020-01-10
## 12302 28 2 2020-01-10
## 12303 11 3 2020-01-10
## 12304 52 5 2020-01-10
## 12305 9 0 2020-01-10
## 12306 17 1 2020-01-10
## 12307 21 1 2020-01-10
## 12308 7 2 2020-01-10
## 12309 0 0 2020-01-10
## 12310 5 0 2020-01-10
## 12311 7 0 2020-01-10
## 12312 29 1 2020-01-10
## 12313 2 0 2020-01-10
## 12314 0 0 2020-01-10
## 12315 4 0 2020-01-10
## 12316 5 0 2020-01-10
## 12317 5 1 2020-01-10
## 12318 48 5 2020-01-10
## 12319 131 2 2020-01-10
## 12320 2 0 2020-01-10
## 12321 5 1 2020-01-10
## 12322 2 0 2020-01-10
## 12323 0 0 2020-01-10
## 12324 8 0 2020-01-10
## 12325 82 9 2020-01-10
## 12326 0 0 2020-01-10
## 12327 0 0 2020-01-10
## 12328 0 0 2020-01-10
## 12329 7 2 2020-01-10
## 12330 4 0 2020-01-10
## 12331 0 0 2020-01-10
## 12332 1 0 2020-01-10
## 12333 19 1 2020-01-10
## 12334 5 0 2020-01-10
## 12335 8 0 2020-01-10
## 12336 2 0 2020-01-10
## 12337 45 4 2020-01-10
## 12338 12 0 2020-01-10
## 12339 2 0 2020-01-10
## 12340 91 4 2020-01-10
## 12341 9 0 2020-01-10
## 12342 25 3 2020-01-10
## 12343 4 0 2020-01-10
## 12344 4 0 2020-01-10
## 12345 208 47 2020-01-10
## 12346 2 0 2020-01-10
## 12347 8 0 2020-01-10
## 12348 0 0 2020-01-10
## 12349 10 0 2020-01-10
## 12350 0 0 2020-01-10
## 12351 431 32 2020-01-10
## 12352 17 2 2020-01-10
## 12353 15 6 2020-01-10
## 12354 50 0 2020-01-10
## 12355 0 0 2020-01-10
## 12356 7 6 2020-01-10
## 12357 13 1 2020-01-10
## 12358 25 2 2020-01-10
## 12359 4 1 2020-01-10
## 12360 2 0 2020-01-10
## 12361 4 1 2020-01-10
## 12362 30 2 2020-01-10
## 12363 4 0 2020-01-10
## 12364 20 3 2020-01-10
## 12365 685 207 2020-01-10
## 12366 23 4 2020-01-10
## 12367 3 0 2020-01-10
## 12368 0 0 2020-01-10
## 12369 397 19 2020-01-10
## 12370 45 1 2020-01-10
## 12371 6 0 2020-01-10
## 12372 2 1 2020-01-10
## 12373 4 0 2020-01-10
## 12374 16 0 2020-01-10
## 12375 22 6 2020-01-10
## 12376 49 3 2020-01-10
## 12377 33 1 2020-01-10
## 12378 24 5 2020-01-10
## 12379 5 0 2020-01-10
## 12380 3 0 2020-01-10
## 12381 14 0 2020-01-10
## 12382 0 0 2020-01-10
## 12383 54 2 2020-01-10
## 12384 0 0 2020-01-10
## 12385 12 1 2020-01-10
## 12386 2 0 2020-01-10
## 12387 0 0 2020-01-10
## 12388 124 71 2020-01-10
## 12389 7 0 2020-01-10
## 12390 6 0 2020-01-10
## 12391 9 1 2020-01-10
## 12392 3 0 2020-01-10
## 12393 0 0 2020-01-10
## 12394 4 1 2020-01-10
## 12395 5 3 2020-01-10
## 12396 31 0 2020-01-10
## 12397 11 0 2020-01-10
## 12398 35 0 2020-01-10
## 12399 41 5 2020-01-10
## 12400 14 2 2020-01-10
## 12401 23 29 2020-01-10
## 12402 15 0 2020-01-10
## 12403 0 0 2020-01-10
## 12404 17 1 2020-01-10
## 12405 2 2 2020-01-10
## 12406 70 4 2020-01-10
## 12407 14 0 2020-01-10
## 12408 3 0 2020-01-10
## 12409 3 0 2020-01-10
## 12410 0 0 2020-01-10
## 12411 4 2 2020-01-10
## 12412 45 8 2020-01-10
## 12413 4 0 2020-01-10
## 12414 8 0 2020-01-10
## 12415 45 6 2020-01-10
## 12416 0 0 2020-01-10
## 12417 119 2 2020-01-10
## 12418 5 0 2020-01-10
## 12419 22 3 2020-01-10
## 12420 141 7 2020-01-10
## 12421 116 1 2020-01-10
## 12422 99 6 2020-01-10
## 12423 0 0 2020-01-10
## 12424 3 0 2020-01-10
## 12425 8 1 2020-01-10
## 12426 32 2 2020-01-10
## 12427 6 0 2020-01-10
## 12428 13 2 2020-01-10
## 12429 4 0 2020-01-10
## 12430 38 0 2020-01-10
## 12431 0 0 2020-01-10
## 12432 5 2 2020-01-10
## 12433 16 1 2020-01-10
## 12434 6 0 2020-01-10
## 12435 71 4 2020-01-10
## 12436 0 0 2020-01-10
## 12437 8 0 2020-01-10
## 12438 34 2 2020-01-10
## 12439 47 2 2020-01-10
## 12440 7 0 2020-01-10
## 12441 1 0 2020-01-10
## 12442 38 7 2020-01-10
## 12443 13 0 2020-01-10
## 12444 35 1 2020-01-10
## 12445 3 0 2020-01-10
## 12446 46 1 2020-01-10
## 12447 0 1 2020-01-10
## 12448 3 1 2020-01-10
## 12449 4 1 2020-01-10
## 12450 3 0 2020-01-10
## 12451 10 1 2020-01-10
## 12452 33 3 2020-01-10
## 12453 35 1 2020-01-10
## 12454 1 2 2020-01-10
## 12455 3 0 2020-01-10
## 12456 6 1 2020-01-10
## 12457 6 0 2020-01-10
## 12458 0 0 2020-01-10
## 12459 5 0 2020-01-10
## 12460 2 0 2020-01-10
## 12461 4 0 2020-01-10
## 12462 19 0 2020-01-10
## 12463 0 0 2020-01-10
## 12464 3 0 2020-01-10
## 12465 11 5 2020-01-10
## 12466 26 2 2020-01-10
## 12467 44 15 2020-01-10
## 12468 26 1 2020-01-10
## 12469 46 4 2020-01-10
## 12470 10 0 2020-01-10
## 12471 39 15 2020-01-10
## 12472 7 0 2020-01-10
## 12473 12 1 2020-01-10
## 12474 3 0 2020-01-10
## 12475 6 3 2020-01-10
## 12476 30 2 2020-01-10
## 12477 5 1 2020-01-10
## 12478 11 0 2020-01-10
## 12479 32 1 2020-01-10
## 12480 0 2 2020-01-10
## 12481 5 0 2020-01-10
## 12482 102 9 2020-01-10
## 12483 14 1 2020-01-10
## 12484 3 0 2020-01-10
## 12485 3 0 2020-01-10
## 12486 3 0 2020-01-10
## 12487 0 0 2020-01-10
## 12488 15 0 2020-01-10
## 12489 0 0 2020-01-10
## 12490 4 0 2020-01-10
## 12491 7 0 2020-01-10
## 12492 3 0 2020-01-10
## 12493 2 0 2020-01-10
## 12494 22 1 2020-01-10
## 12495 46 1 2020-01-10
## 12496 0 0 2020-01-10
## 12497 5 2 2020-01-10
## 12498 11 3 2020-01-10
## 12499 0 0 2020-01-10
## 12500 0 0 2020-01-10
## 12501 0 0 2020-01-10
## 12502 0 0 2020-01-10
## 12503 0 0 2020-01-10
## 12504 135 6 2020-01-10
## 12505 11 0 2020-01-10
## 12506 4 0 2020-01-10
## 12507 8 1 2020-01-10
## 12508 27 7 2020-01-10
## 12509 2 0 2020-01-10
## 12510 31 1 2020-01-10
## 12511 10 2 2020-01-10
## 12512 1 0 2020-01-10
## 12513 0 0 2020-01-10
## 12514 4 0 2020-01-10
## 12515 26 6 2020-01-10
## 12516 7 1 2020-01-10
## 12517 1 0 2020-01-10
## 12518 6 0 2020-01-10
## 12519 103 9 2020-01-10
## 12520 71 3 2020-01-10
## 12521 0 0 2020-01-10
## 12522 4 1 2020-01-10
## 12523 37 0 2020-01-10
## 12524 7 0 2020-01-10
## 12525 54 24 2020-01-10
## 12526 0 0 2020-01-10
## 12527 1 0 2020-01-10
## 12528 0 0 2020-01-10
## 12529 1 0 2020-01-10
## 12530 1 0 2020-01-10
## 12531 4 2 2020-01-10
## 12532 6 0 2020-01-10
## 12533 17 0 2020-01-10
## 12534 173 3 2020-01-10
## 12535 2 1 2020-01-10
## 12536 81 2 2020-01-10
## 12537 7 0 2020-01-10
## 12538 11 0 2020-01-10
## 12539 4 0 2020-01-10
## 12540 10 1 2020-01-10
## 12541 26 0 2020-01-10
## 12542 0 0 2020-01-10
## 12543 3 0 2020-01-10
## 12544 5 1 2020-01-10
## 12545 3 0 2020-01-10
## 12546 5 0 2020-01-10
## 12547 24 5 2020-01-10
## 12548 14 0 2020-01-10
## 12549 41 2 2020-01-10
## 12550 5 0 2020-01-10
## 12551 41 2 2020-01-10
## 12552 8 0 2020-01-10
## 12553 7 0 2020-01-10
## 12554 24 1 2020-01-10
## 12555 0 0 2020-01-10
## 12556 20 0 2020-01-10
## 12557 12 0 2020-01-10
## 12558 17 0 2020-01-10
## 12559 5 4 2020-01-10
## 12560 49 0 2020-01-10
## 12561 2 0 2020-01-10
## 12562 2 0 2020-01-10
## 12563 4 0 2020-01-10
## 12564 9 3 2020-01-10
## 12565 13 0 2020-01-10
## 12566 10 0 2020-01-10
## 12567 8 2 2020-01-10
## 12568 1 0 2020-01-10
## 12569 7 1 2020-01-10
## 12570 28 1 2020-01-10
## 12571 3 0 2020-01-10
## 12572 116 3 2020-01-10
## 12573 39 4 2020-01-10
## 12574 35 9 2020-01-10
## 12575 7 1 2020-01-10
## 12576 30 4 2020-01-10
## 12577 5 0 2020-01-10
## 12578 1 0 2020-01-10
## 12579 20 2 2020-01-10
## 12580 2 0 2020-01-10
## 12581 9 0 2020-01-10
## 12582 6 2 2020-01-10
## 12583 12 1 2020-01-10
## 12584 9 1 2020-01-10
## 12585 3 0 2020-01-10
## 12586 2 0 2020-01-10
## 12587 3 1 2020-01-10
## 12588 2 0 2020-01-10
## 12589 7 1 2020-01-10
## 12590 5 0 2020-01-10
## 12591 5 0 2020-01-10
## 12592 18 2 2020-01-10
## 12593 19 0 2020-01-10
## 12594 80 3 2020-01-10
## 12595 14 0 2020-01-10
## 12596 18 1 2020-01-10
## 12597 18 0 2020-01-10
## 12598 6 0 2020-01-10
## 12599 15 3 2020-01-10
## 12600 26 1 2020-01-10
## 12601 8 9 2020-01-10
## 12602 30 2 2020-01-10
## 12603 21 2 2020-01-10
## 12604 5 1 2020-01-10
## 12605 1 0 2020-01-10
## 12606 42 0 2020-01-10
## 12607 5 3 2020-01-10
## 12608 0 0 2020-01-10
## 12609 116 5 2020-01-10
## 12610 20 3 2020-01-10
## 12611 5 1 2020-01-10
## 12612 2 0 2020-01-10
## 12613 120 0 2020-01-10
## 12614 13 3 2020-01-10
## 12615 0 0 2020-01-10
## 12616 442 165 2020-01-10
## 12617 98 6 2020-01-10
## 12618 54 23 2020-01-10
## 12619 7 0 2020-01-10
## 12620 1 0 2020-01-10
## 12621 57 0 2020-01-10
## 12622 15 0 2020-01-10
## 12623 0 0 2020-01-10
## 12624 6 0 2020-01-10
## 12625 84 15 2020-01-10
## 12626 6 0 2020-01-10
## 12627 15 0 2020-01-10
## 12628 30 1 2020-01-10
## 12629 19 4 2020-01-10
## 12630 7 3 2020-01-10
## 12631 52 4 2020-01-10
## 12632 19 0 2020-01-10
## 12633 40 6 2020-01-10
## 12634 1 0 2020-01-10
## 12635 0 0 2020-01-10
## 12636 2 0 2020-01-10
## 12637 13 1 2020-01-10
## 12638 10 3 2020-01-10
## 12639 2 2 2020-01-10
## 12640 57 1 2020-01-10
## 12641 36 4 2020-01-10
## 12642 10 1 2020-01-10
## 12643 22 3 2020-01-10
## 12644 19 0 2020-01-10
## 12645 42 5 2020-01-10
## 12646 32 1 2020-01-10
## 12647 23 2 2020-01-10
## 12648 0 0 2020-01-10
## 12649 6 0 2020-01-10
## 12650 26 0 2020-01-10
## 12651 2 1 2020-01-10
## 12652 5 0 2020-01-10
## 12653 17 2 2020-01-10
## 12654 5 2 2020-01-10
## 12655 1 0 2020-01-10
## 12656 8 1 2020-01-10
## 12657 51 2 2020-01-10
## 12658 138 4 2020-01-10
## 12659 5 0 2020-01-10
## 12660 8 0 2020-01-10
## 12661 3 0 2020-01-10
## 12662 0 0 2020-01-10
## 12663 0 0 2020-01-10
## 12664 0 0 2020-01-10
## 12665 2 3 2020-01-10
## 12666 53 1 2020-01-10
## 12667 8 2 2020-01-10
## 12668 32 4 2020-01-10
## 12669 10 0 2020-01-10
## 12670 15 0 2020-01-10
## 12671 6 4 2020-01-10
## 12672 72 110 2020-01-10
## 12673 32 0 2020-01-10
## 12674 137 8 2020-01-10
## 12675 12 0 2020-01-10
## 12676 5 0 2020-01-10
## 12677 10 6 2020-01-10
## 12678 2 2 2020-01-10
## 12679 0 0 2020-01-10
## 12680 1 0 2020-01-10
## 12681 10 2 2020-01-10
## 12682 8 0 2020-01-10
## 12683 0 0 2020-01-10
## 12684 62 8 2020-01-10
## 12685 1 0 2020-01-10
## 12686 65 19 2020-01-10
## 12687 12 1 2020-01-10
## 12688 6 0 2020-01-10
## 12689 8 1 2020-01-10
## 12690 8 0 2020-01-10
## 12691 7 0 2020-01-10
## 12692 10 0 2020-01-10
## 12693 7 1 2020-01-10
## 12694 8 1 2020-01-10
## 12695 24 2 2020-01-10
## 12696 53 5 2020-01-10
## 12697 2 2 2020-01-10
## 12698 0 0 2020-01-10
## 12699 0 0 2020-01-10
## 12700 29 7 2020-01-10
## 12701 0 0 2020-01-10
## 12702 0 0 2020-01-10
## 12703 8 0 2020-01-10
## 12704 3 0 2020-01-10
## 12705 22 1 2020-01-10
## 12706 1 2 2020-01-10
## 12707 0 0 2020-01-10
## 12708 19 0 2020-01-10
## 12709 8 0 2020-01-10
## 12710 10 1 2020-01-10
## 12711 13 7 2020-01-10
## 12712 21 1 2020-01-10
## 12713 59 6 2020-01-10
## 12714 88 3 2020-01-10
## 12715 4 1 2020-01-10
## 12716 16 0 2020-01-10
## 12717 14 0 2020-01-10
## 12718 2 1 2020-01-10
## 12719 0 0 2020-01-10
## 12720 6 0 2020-01-10
## 12721 50 3 2020-01-10
## 12722 11 1 2020-01-10
## 12723 48 4 2020-01-10
## 12724 4 1 2020-01-10
## 12725 1 1 2020-01-10
## 12726 62 5 2020-01-10
## 12727 0 0 2020-01-10
## 12728 273 8 2020-01-10
## 12729 16 6 2020-01-10
## 12730 0 0 2020-01-10
## 12731 3 0 2020-01-10
## 12732 3 0 2020-01-10
## 12733 56 1 2020-01-10
## 12734 0 0 2020-01-10
## 12735 10 0 2020-01-10
## 12736 23 3 2020-01-10
## 12737 6 2 2020-01-10
## 12738 9 1 2020-01-10
## 12739 3 1 2020-01-10
## 12740 0 0 2020-01-10
## 12741 11 11 2020-01-10
## 12742 8 0 2020-01-10
## 12743 80 3 2020-01-10
## 12744 1 1 2020-01-10
## 12745 83 0 2020-01-10
## 12746 14 0 2020-01-10
## 12747 10 0 2020-01-10
## 12748 22 4 2020-01-10
## 12749 30 5 2020-01-10
## 12750 10 2 2020-01-10
## 12751 5 0 2020-01-10
## 12752 0 0 2020-01-10
## 12753 6 3 2020-01-10
## 12754 27 1 2020-01-10
## 12755 2 1 2020-01-10
## 12756 0 0 2020-01-10
## 12757 25 2 2020-01-10
## 12758 22 1 2020-01-10
## 12759 11 2 2020-01-10
## 12760 21 4 2020-01-10
## 12761 25 2 2020-01-10
## 12762 3 1 2020-01-10
## 12763 3 0 2020-01-10
## 12764 7 3 2020-01-10
## 12765 0 0 2020-01-10
## 12766 3 1 2020-01-10
## 12767 0 0 2020-01-10
## 12768 7 0 2020-01-10
## 12769 39 3 2020-01-10
## 12770 0 0 2020-01-10
## 12771 95 7 2020-01-10
## 12772 11 1 2020-01-10
## 12773 0 0 2020-01-10
## 12774 1 0 2020-01-10
## 12775 0 0 2020-01-10
## 12776 4 0 2020-01-10
## 12777 8 0 2020-01-10
## 12778 108 9 2020-01-10
## 12779 8 0 2020-01-10
## 12780 32 4 2020-01-10
## 12781 21 2 2020-01-10
## 12782 3 0 2020-01-10
## 12783 17 1 2020-01-10
## 12784 21 4 2020-01-10
## 12785 0 0 2020-01-10
## 12786 10 6 2020-01-10
## 12787 58 37 2020-01-10
## 12788 0 0 2020-01-10
## 12789 2 1 2020-01-10
## 12790 8 1 2020-01-10
## 12791 0 0 2020-01-10
## 12792 4 0 2020-01-10
## 12793 54 0 2020-01-10
## 12794 0 0 2020-01-10
## 12795 93 39 2020-01-10
## 12796 0 0 2020-01-10
## 12797 0 0 2020-01-10
## 12798 4 0 2020-01-10
## 12799 1 2 2020-01-10
## 12800 30 2 2020-01-10
## 12801 3 0 2020-01-10
## 12802 3 0 2020-01-10
## 12803 28 3 2020-01-10
## 12804 1 0 2020-01-10
## 12805 0 0 2020-01-10
## 12806 4 0 2020-01-10
## 12807 12 1 2020-01-10
## 12808 5 0 2020-01-10
## 12809 0 0 2020-01-10
## 12810 19 5 2020-01-10
## 12811 17 20 2020-01-10
## 12812 45 4 2020-01-10
## 12813 5 0 2020-01-10
## 12814 8 0 2020-01-10
## 12815 21 1 2020-01-10
## 12816 0 0 2020-01-10
## 12817 1 0 2020-01-10
## 12818 3 2 2020-01-10
## 12819 119 27 2020-01-10
## 12820 2 0 2020-01-10
## 12821 8 0 2020-01-10
## 12822 6 0 2020-01-10
## 12823 7 2 2020-01-10
## 12824 3 1 2020-01-10
## 12825 9 2 2020-01-10
## 12826 7 1 2020-01-10
## 12827 7 0 2020-01-10
## 12828 9 0 2020-01-10
## 12829 222 4 2020-01-10
## 12830 5 1 2020-01-10
## 12831 7 0 2020-01-10
## 12832 0 0 2020-01-10
## 12833 77 5 2020-01-10
## 12834 0 0 2020-01-10
## 12835 4 0 2020-01-10
## 12836 7 1 2020-01-10
## 12837 5 0 2020-01-10
## 12838 60 2 2020-01-10
## 12839 6 1 2020-01-10
## 12840 7 1 2020-01-10
## 12841 1 0 2020-01-10
## 12842 5 0 2020-01-10
## 12843 0 0 2020-01-10
## 12844 7 0 2020-01-10
## 12845 9 3 2020-01-10
## 12846 13 0 2020-01-10
## 12847 103 1 2020-01-10
## 12848 5 0 2020-01-10
## 12849 4 1 2020-01-10
## 12850 4 1 2020-01-10
## 12851 15 0 2020-01-10
## 12852 9 1 2020-01-10
## 12853 6 0 2020-01-10
## 12854 10 0 2020-01-10
## 12855 9 2 2020-01-10
## 12856 4 0 2020-01-10
## 12857 2 0 2020-01-10
## 12858 33 1 2020-01-11
## 12859 3 0 2020-01-11
## 12860 8 0 2020-01-11
## 12861 11 0 2020-01-11
## 12862 0 0 2020-01-11
## 12863 156 28 2020-01-11
## 12864 82 1 2020-01-11
## 12865 12 0 2020-01-11
## 12866 2 0 2020-01-11
## 12867 5 0 2020-01-11
## 12868 9 0 2020-01-11
## 12869 0 0 2020-01-11
## 12870 2 1 2020-01-11
## 12871 86 5 2020-01-11
## 12872 133 3 2020-01-11
## 12873 12 2 2020-01-11
## 12874 8 0 2020-01-11
## 12875 0 0 2020-01-11
## 12876 3 2 2020-01-11
## 12877 6 0 2020-01-11
## 12878 53 5 2020-01-11
## 12879 26 0 2020-01-11
## 12880 1 1 2020-01-11
## 12881 30 1 2020-01-11
## 12882 126 14 2020-01-11
## 12883 9 1 2020-01-11
## 12884 1 1 2020-01-11
## 12885 6 0 2020-01-11
## 12886 6 0 2020-01-11
## 12887 22 0 2020-01-11
## 12888 15 1 2020-01-11
## 12889 10 0 2020-01-11
## 12890 0 0 2020-01-11
## 12891 26 4 2020-01-11
## 12892 4 0 2020-01-11
## 12893 0 0 2020-01-11
## 12894 5 0 2020-01-11
## 12895 46 0 2020-01-11
## 12896 7 5 2020-01-11
## 12897 4 3 2020-01-11
## 12898 79 6 2020-01-11
## 12899 79 4 2020-01-11
## 12900 0 1 2020-01-11
## 12901 29 1 2020-01-11
## 12902 0 0 2020-01-11
## 12903 0 0 2020-01-11
## 12904 0 0 2020-01-11
## 12905 19 3 2020-01-11
## 12906 34 6 2020-01-11
## 12907 87 5 2020-01-11
## 12908 6 0 2020-01-11
## 12909 0 0 2020-01-11
## 12910 56 2 2020-01-11
## 12911 48 12 2020-01-11
## 12912 10 0 2020-01-11
## 12913 13 1 2020-01-11
## 12914 5 0 2020-01-11
## 12915 52 7 2020-01-11
## 12916 12 0 2020-01-11
## 12917 14 0 2020-01-11
## 12918 3 0 2020-01-11
## 12919 3 0 2020-01-11
## 12920 647 31 2020-01-11
## 12921 7 4 2020-01-11
## 12922 22 9 2020-01-11
## 12923 27 2 2020-01-11
## 12924 4 0 2020-01-11
## 12925 7 2 2020-01-11
## 12926 50 3 2020-01-11
## 12927 0 0 2020-01-11
## 12928 15 3 2020-01-11
## 12929 20 2 2020-01-11
## 12930 160 16 2020-01-11
## 12931 0 0 2020-01-11
## 12932 0 0 2020-01-11
## 12933 72 9 2020-01-11
## 12934 0 0 2020-01-11
## 12935 4 0 2020-01-11
## 12936 57 12 2020-01-11
## 12937 0 0 2020-01-11
## 12938 0 1 2020-01-11
## 12939 28 1 2020-01-11
## 12940 24 1 2020-01-11
## 12941 4 0 2020-01-11
## 12942 5 0 2020-01-11
## 12943 0 0 2020-01-11
## 12944 101 6 2020-01-11
## 12945 1 0 2020-01-11
## 12946 21 30 2020-01-11
## 12947 0 0 2020-01-11
## 12948 8 0 2020-01-11
## 12949 24 5 2020-01-11
## 12950 5 0 2020-01-11
## 12951 0 0 2020-01-11
## 12952 14 0 2020-01-11
## 12953 2 2 2020-01-11
## 12954 84 0 2020-01-11
## 12955 10 1 2020-01-11
## 12956 70 7 2020-01-11
## 12957 68 5 2020-01-11
## 12958 13 0 2020-01-11
## 12959 3 1 2020-01-11
## 12960 36 4 2020-01-11
## 12961 32 3 2020-01-11
## 12962 0 0 2020-01-11
## 12963 203 4 2020-01-11
## 12964 9 5 2020-01-11
## 12965 10 0 2020-01-11
## 12966 0 0 2020-01-11
## 12967 0 0 2020-01-11
## 12968 82 17 2020-01-11
## 12969 9 2 2020-01-11
## 12970 9 1 2020-01-11
## 12971 3 0 2020-01-11
## 12972 0 0 2020-01-11
## 12973 4 0 2020-01-11
## 12974 7 1 2020-01-11
## 12975 33 5 2020-01-11
## 12976 6 3 2020-01-11
## 12977 81 5 2020-01-11
## 12978 0 0 2020-01-11
## 12979 0 0 2020-01-11
## 12980 71 35 2020-01-11
## 12981 18 0 2020-01-11
## 12982 0 0 2020-01-11
## 12983 15 1 2020-01-11
## 12984 6 1 2020-01-11
## 12985 16 2 2020-01-11
## 12986 10 1 2020-01-11
## 12987 98 15 2020-01-11
## 12988 3 1 2020-01-11
## 12989 52 8 2020-01-11
## 12990 0 0 2020-01-11
## 12991 120 15 2020-01-11
## 12992 2 0 2020-01-11
## 12993 4 0 2020-01-11
## 12994 52 1 2020-01-11
## 12995 110 13 2020-01-11
## 12996 11 0 2020-01-11
## 12997 12 0 2020-01-11
## 12998 17 1 2020-01-11
## 12999 87 5 2020-01-11
## 13000 6 0 2020-01-11
## 13001 9 3 2020-01-11
## 13002 24 1 2020-01-11
## 13003 74 4 2020-01-11
## 13004 47 2 2020-01-11
## 13005 0 0 2020-01-11
## 13006 4 1 2020-01-11
## 13007 8 1 2020-01-11
## 13008 10 0 2020-01-11
## 13009 61 1 2020-01-11
## 13010 0 0 2020-01-11
## 13011 13 4 2020-01-11
## 13012 0 0 2020-01-11
## 13013 0 0 2020-01-11
## 13014 4 0 2020-01-11
## 13015 1 0 2020-01-11
## 13016 0 0 2020-01-11
## 13017 0 0 2020-01-11
## 13018 26 8 2020-01-11
## 13019 71 2 2020-01-11
## 13020 43 7 2020-01-11
## 13021 59 3 2020-01-11
## 13022 38 12 2020-01-11
## 13023 0 0 2020-01-11
## 13024 17 2 2020-01-11
## 13025 3 2 2020-01-11
## 13026 60 1 2020-01-11
## 13027 12 1 2020-01-11
## 13028 1 0 2020-01-11
## 13029 2 0 2020-01-11
## 13030 3 1 2020-01-11
## 13031 1 1 2020-01-11
## 13032 1 0 2020-01-11
## 13033 5 0 2020-01-11
## 13034 4 0 2020-01-11
## 13035 11 0 2020-01-11
## 13036 49 1 2020-01-11
## 13037 22 2 2020-01-11
## 13038 2 1 2020-01-11
## 13039 0 0 2020-01-11
## 13040 0 0 2020-01-11
## 13041 55 3 2020-01-11
## 13042 6 0 2020-01-11
## 13043 571 10 2020-01-11
## 13044 5 4 2020-01-11
## 13045 10 4 2020-01-11
## 13046 3 0 2020-01-11
## 13047 11 0 2020-01-11
## 13048 3 0 2020-01-11
## 13049 6 1 2020-01-11
## 13050 48 2 2020-01-11
## 13051 1 0 2020-01-11
## 13052 41 5 2020-01-11
## 13053 17 1 2020-01-11
## 13054 0 0 2020-01-11
## 13055 13 1 2020-01-11
## 13056 27 2 2020-01-11
## 13057 2 1 2020-01-11
## 13058 30 0 2020-01-11
## 13059 29 2 2020-01-11
## 13060 13 2 2020-01-11
## 13061 4 3 2020-01-11
## 13062 55 3 2020-01-11
## 13063 6 0 2020-01-11
## 13064 3 0 2020-01-11
## 13065 0 0 2020-01-11
## 13066 0 0 2020-01-11
## 13067 95 1 2020-01-11
## 13068 32 2 2020-01-11
## 13069 24 1 2020-01-11
## 13070 653 10 2020-01-11
## 13071 30 0 2020-01-11
## 13072 9 1 2020-01-11
## 13073 27 3 2020-01-11
## 13074 6 0 2020-01-11
## 13075 19 0 2020-01-11
## 13076 3 0 2020-01-11
## 13077 2 0 2020-01-11
## 13078 4 0 2020-01-11
## 13079 9 3 2020-01-11
## 13080 3 0 2020-01-11
## 13081 2 0 2020-01-11
## 13082 85 3 2020-01-11
## 13083 11 4 2020-01-11
## 13084 57 1 2020-01-11
## 13085 0 0 2020-01-11
## 13086 16 2 2020-01-11
## 13087 6 0 2020-01-11
## 13088 120 4 2020-01-11
## 13089 5 0 2020-01-11
## 13090 0 0 2020-01-11
## 13091 0 0 2020-01-11
## 13092 0 0 2020-01-11
## 13093 2 0 2020-01-11
## 13094 4 0 2020-01-11
## 13095 2 0 2020-01-11
## 13096 35 3 2020-01-11
## 13097 6 1 2020-01-11
## 13098 23 2 2020-01-11
## 13099 8 0 2020-01-11
## 13100 9 0 2020-01-11
## 13101 8 0 2020-01-11
## 13102 0 0 2020-01-11
## 13103 0 2 2020-01-11
## 13104 15 0 2020-01-11
## 13105 26 3 2020-01-11
## 13106 69 2 2020-01-11
## 13107 0 0 2020-01-11
## 13108 149 4 2020-01-11
## 13109 4 0 2020-01-11
## 13110 6 0 2020-01-11
## 13111 23 2 2020-01-11
## 13112 0 0 2020-01-11
## 13113 49 4 2020-01-11
## 13114 62 5 2020-01-11
## 13115 30 1 2020-01-11
## 13116 67 6 2020-01-11
## 13117 0 0 2020-01-11
## 13118 22 1 2020-01-11
## 13119 6 0 2020-01-11
## 13120 0 1 2020-01-11
## 13121 14 1 2020-01-11
## 13122 22 3 2020-01-11
## 13123 551 90 2020-01-11
## 13124 12 1 2020-01-11
## 13125 28 1 2020-01-11
## 13126 29 1 2020-01-11
## 13127 8 1 2020-01-11
## 13128 3 2 2020-01-11
## 13129 20 2 2020-01-11
## 13130 0 0 2020-01-11
## 13131 13 0 2020-01-11
## 13132 6 0 2020-01-11
## 13133 9 1 2020-01-11
## 13134 27 0 2020-01-11
## 13135 0 0 2020-01-11
## 13136 33 5 2020-01-11
## 13137 861 45 2020-01-11
## 13138 26 12 2020-01-11
## 13139 0 1 2020-01-11
## 13140 4 0 2020-01-11
## 13141 47 2 2020-01-11
## 13142 15 0 2020-01-11
## 13143 7 0 2020-01-11
## 13144 7 2 2020-01-11
## 13145 161 4 2020-01-11
## 13146 17 3 2020-01-11
## 13147 507 470 2020-01-11
## 13148 10 8 2020-01-11
## 13149 1 0 2020-01-11
## 13150 27 2 2020-01-11
## 13151 17 2 2020-01-11
## 13152 10 2 2020-01-11
## 13153 4 0 2020-01-11
## 13154 18 1 2020-01-11
## 13155 1 0 2020-01-11
## 13156 7 0 2020-01-11
## 13157 179 2 2020-01-11
## 13158 168 12 2020-01-11
## 13159 10 0 2020-01-11
## 13160 38 2 2020-01-11
## 13161 0 0 2020-01-11
## 13162 44 1 2020-01-11
## 13163 10 0 2020-01-11
## 13164 78 8 2020-01-11
## 13165 50 2 2020-01-11
## 13166 4 0 2020-01-11
## 13167 30 1 2020-01-11
## 13168 0 0 2020-01-11
## 13169 18 1 2020-01-11
## 13170 12 4 2020-01-11
## 13171 1 0 2020-01-11
## 13172 9 0 2020-01-11
## 13173 13 0 2020-01-11
## 13174 3 0 2020-01-11
## 13175 5 0 2020-01-11
## 13176 2 0 2020-01-11
## 13177 0 0 2020-01-11
## 13178 1 0 2020-01-11
## 13179 36 10 2020-01-11
## 13180 8 0 2020-01-11
## 13181 36 4 2020-01-11
## 13182 18 0 2020-01-11
## 13183 24 0 2020-01-11
## 13184 7 1 2020-01-11
## 13185 83 3 2020-01-11
## 13186 1 0 2020-01-11
## 13187 17 0 2020-01-11
## 13188 1 0 2020-01-11
## 13189 40 2 2020-01-11
## 13190 31 3 2020-01-11
## 13191 23 1 2020-01-11
## 13192 1 0 2020-01-11
## 13193 1 0 2020-01-11
## 13194 2 0 2020-01-11
## 13195 18 6 2020-01-11
## 13196 14 1 2020-01-11
## 13197 0 0 2020-01-11
## 13198 235 2 2020-01-11
## 13199 1 0 2020-01-11
## 13200 4 1 2020-01-11
## 13201 65 7 2020-01-11
## 13202 60 4 2020-01-11
## 13203 0 0 2020-01-11
## 13204 4 0 2020-01-11
## 13205 260 75 2020-01-11
## 13206 0 0 2020-01-11
## 13207 3 0 2020-01-11
## 13208 0 0 2020-01-11
## 13209 22 2 2020-01-11
## 13210 53 22 2020-01-11
## 13211 31 2 2020-01-11
## 13212 2 2 2020-01-11
## 13213 2 0 2020-01-11
## 13214 106 9 2020-01-11
## 13215 3 0 2020-01-11
## 13216 7 0 2020-01-11
## 13217 57 1 2020-01-11
## 13218 18 1 2020-01-11
## 13219 4 2 2020-01-11
## 13220 0 0 2020-01-11
## 13221 40 0 2020-01-11
## 13222 0 0 2020-01-11
## 13223 9 1 2020-01-11
## 13224 6 1 2020-01-11
## 13225 0 0 2020-01-11
## 13226 60 5 2020-01-11
## 13227 6 0 2020-01-11
## 13228 38 0 2020-01-11
## 13229 11 1 2020-01-11
## 13230 5 0 2020-01-11
## 13231 0 0 2020-01-11
## 13232 34 0 2020-01-11
## 13233 0 0 2020-01-11
## 13234 1 0 2020-01-11
## 13235 6 1 2020-01-11
## 13236 2 0 2020-01-11
## 13237 0 0 2020-01-11
## 13238 16 0 2020-01-11
## 13239 20 2 2020-01-11
## 13240 10 1 2020-01-11
## 13241 1 1 2020-01-11
## 13242 11 2 2020-01-11
## 13243 14 0 2020-01-11
## 13244 2 1 2020-01-11
## 13245 52 4 2020-01-11
## 13246 90 3 2020-01-11
## 13247 16 3 2020-01-11
## 13248 10 1 2020-01-11
## 13249 2 0 2020-01-11
## 13250 5 0 2020-01-11
## 13251 11 2 2020-01-11
## 13252 61 3 2020-01-11
## 13253 3 0 2020-01-11
## 13254 1 1 2020-01-11
## 13255 5 1 2020-01-11
## 13256 8 0 2020-01-11
## 13257 0 0 2020-01-11
## 13258 29 0 2020-01-11
## 13259 12 1 2020-01-11
## 13260 92 7 2020-01-11
## 13261 2 0 2020-01-11
## 13262 26 1 2020-01-11
## 13263 2 1 2020-01-11
## 13264 9 1 2020-01-11
## 13265 8 3 2020-01-11
## 13266 4 0 2020-01-11
## 13267 0 0 2020-01-11
## 13268 1 0 2020-01-11
## 13269 61 0 2020-01-11
## 13270 23 1 2020-01-11
## 13271 44 9 2020-01-11
## 13272 2 0 2020-01-11
## 13273 7 0 2020-01-11
## 13274 13 1 2020-01-11
## 13275 0 1 2020-01-11
## 13276 25 1 2020-01-11
## 13277 0 0 2020-01-11
## 13278 8 1 2020-01-11
## 13279 120 4 2020-01-11
## 13280 27 2 2020-01-11
## 13281 3 1 2020-01-11
## 13282 66 8 2020-01-11
## 13283 2 0 2020-01-11
## 13284 1 0 2020-01-11
## 13285 54 3 2020-01-11
## 13286 6 2 2020-01-10
## 13287 29 3 2020-01-10
## 13288 4 2 2020-01-10
## 13289 6 1 2020-01-10
## 13290 12 3 2020-01-10
## 13291 419 17 2020-01-10
## 13292 3 0 2020-01-10
## 13293 3 4 2020-01-10
## 13294 0 0 2020-01-10
## 13295 18 1 2020-01-10
## 13296 3 1 2020-01-10
## 13297 5 0 2020-01-10
## 13298 1 0 2020-01-10
## 13299 4 3 2020-01-10
## 13300 116 2 2020-01-10
## 13301 7 1 2020-01-10
## 13302 35 17 2020-01-10
## 13303 3 1 2020-01-10
## 13304 40 3 2020-01-10
## 13305 41 2 2020-01-10
## 13306 11 1 2020-01-10
## 13307 68 3 2020-01-10
## 13308 11 1 2020-01-10
## 13309 6 1 2020-01-10
## 13310 5 0 2020-01-10
## 13311 1 0 2020-01-10
## 13312 3 0 2020-01-10
## 13313 480 7 2020-01-10
## 13314 5 0 2020-01-10
## 13315 11 1 2020-01-10
## 13316 3 0 2020-01-10
## 13317 1 1 2020-01-10
## 13318 2 0 2020-01-10
## 13319 42 4 2020-01-10
## 13320 11 2 2020-01-10
## 13321 22 1 2020-01-10
## 13322 5 0 2020-01-10
## 13323 8 0 2020-01-10
## 13324 3 1 2020-01-10
## 13325 35 1 2020-01-10
## 13326 3 0 2020-01-10
## 13327 11 0 2020-01-10
## 13328 3 0 2020-01-10
## 13329 24 0 2020-01-10
## 13330 5 0 2020-01-10
## 13331 11 0 2020-01-10
## 13332 25 2 2020-01-10
## 13333 12 0 2020-01-10
## 13334 9 0 2020-01-10
## 13335 52 2 2020-01-10
## 13336 10 3 2020-01-10
## 13337 4 1 2020-01-10
## 13338 4 0 2020-01-10
## 13339 25 11 2020-01-10
## 13340 2 2 2020-01-10
## 13341 362 15 2020-01-10
## 13342 47 1 2020-01-10
## 13343 10 1 2020-01-10
## 13344 21 0 2020-01-10
## 13345 11 2 2020-01-10
## 13346 6 0 2020-01-10
## 13347 6 0 2020-01-10
## 13348 3 1 2020-01-10
## 13349 36 1 2020-01-10
## 13350 78 3 2020-01-10
## 13351 5 0 2020-01-10
## 13352 2 0 2020-01-10
## 13353 0 0 2020-01-10
## 13354 24 0 2020-01-10
## 13355 25 2 2020-01-10
## 13356 91 10 2020-01-10
## 13357 8 2 2020-01-10
## 13358 16 1 2020-01-11
## 13359 0 0 2020-01-11
## 13360 0 0 2020-01-11
## 13361 4 0 2020-01-11
## 13362 0 0 2020-01-11
## 13363 34 2 2020-01-11
## 13364 2 0 2020-01-11
## 13365 26 1 2020-01-11
## 13366 22 2 2020-01-11
## 13367 12 1 2020-01-11
## 13368 0 0 2020-01-11
## 13369 4 1 2020-01-11
## 13370 0 0 2020-01-11
## 13371 91 1 2020-01-11
## 13372 0 0 2020-01-11
## 13373 30 4 2020-01-11
## 13374 24 2 2020-01-11
## 13375 0 0 2020-01-11
## 13376 58 3 2020-01-11
## 13377 19 0 2020-01-11
## 13378 2 0 2020-01-11
## 13379 51 2 2020-01-11
## 13380 0 0 2020-01-11
## 13381 166 29 2020-01-11
## 13382 49 1 2020-01-11
## 13383 0 0 2020-01-11
## 13384 63 2 2020-01-11
## 13385 22 0 2020-01-11
## 13386 7 1 2020-01-11
## 13387 12 1 2020-01-11
## 13388 61 2 2020-01-11
## 13389 7 1 2020-01-11
## 13390 47 5 2020-01-11
## 13391 32 6 2020-01-11
## 13392 0 0 2020-01-11
## 13393 7 2 2020-01-11
## 13394 7 0 2020-01-11
## 13395 0 0 2020-01-11
## 13396 61 4 2020-01-11
## 13397 27 1 2020-01-11
## 13398 4 0 2020-01-11
## 13399 1 1 2020-01-11
## 13400 14 2 2020-01-11
## 13401 7 1 2020-01-11
## 13402 98 3 2020-01-11
## 13403 44 0 2020-01-11
## 13404 0 0 2020-01-11
## 13405 0 0 2020-01-11
## 13406 0 0 2020-01-11
## 13407 45 11 2020-01-11
## 13408 68 8 2020-01-11
## 13409 0 0 2020-01-11
## 13410 12 1 2020-01-11
## 13411 0 0 2020-01-11
## 13412 85 13 2020-01-11
## 13413 3 1 2020-01-11
## 13414 1 0 2020-01-11
## 13415 0 0 2020-01-11
## 13416 4 0 2020-01-11
## 13417 3 1 2020-01-11
## 13418 3 0 2020-01-11
## 13419 0 0 2020-01-11
## 13420 0 0 2020-01-11
## 13421 0 0 2020-01-11
## 13422 0 0 2020-01-11
## 13423 7 0 2020-01-11
## 13424 4 0 2020-01-11
## 13425 8 0 2020-01-11
## 13426 124 1 2020-01-11
## 13427 0 0 2020-01-11
## 13428 2 0 2020-01-11
## 13429 0 0 2020-01-11
## 13430 10 0 2020-01-11
## 13431 3 1 2020-01-11
## 13432 9 0 2020-01-11
## 13433 0 0 2020-01-11
## 13434 19 2 2020-01-11
## 13435 8 2 2020-01-11
## 13436 14 0 2020-01-11
## 13437 30 4 2020-01-11
## 13438 15 0 2020-01-11
## 13439 12 0 2020-01-11
## 13440 0 0 2020-01-11
## 13441 33 0 2020-01-11
## 13442 2 0 2020-01-11
## 13443 9 0 2020-01-11
## 13444 13 1 2020-01-11
## 13445 7 0 2020-01-11
## 13446 61 1 2020-01-11
## 13447 3 0 2020-01-11
## 13448 1 1 2020-01-11
## 13449 3 0 2020-01-11
## 13450 6 0 2020-01-11
## 13451 61 1 2020-01-11
## 13452 56 4 2020-01-11
## 13453 8 0 2020-01-11
## 13454 4 0 2020-01-11
## 13455 39 3 2020-01-11
## 13456 22 1 2020-01-11
## 13457 0 0 2020-01-11
## 13458 2 0 2020-01-11
## 13459 117 8 2020-01-11
## 13460 1 0 2020-01-11
## 13461 13 6 2020-01-11
## 13462 6 0 2020-01-11
## 13463 101 4 2020-01-11
## 13464 31 0 2020-01-11
## 13465 13 0 2020-01-11
## 13466 33 3 2020-01-11
## 13467 4 0 2020-01-11
## 13468 7 0 2020-01-11
## 13469 0 0 2020-01-11
## 13470 13 1 2020-01-11
## 13471 2 1 2020-01-11
## 13472 13 1 2020-01-11
## 13473 1 0 2020-01-11
## 13474 8 0 2020-01-11
## 13475 0 0 2020-01-11
## 13476 51 92 2020-01-11
## 13477 14 1 2020-01-11
## 13478 0 0 2020-01-11
## 13479 7 0 2020-01-11
## 13480 2 1 2020-01-11
## 13481 0 0 2020-01-11
## 13482 29 2 2020-01-11
## 13483 32 0 2020-01-11
## 13484 52 0 2020-01-11
## 13485 36 2 2020-01-11
## 13486 16 2 2020-01-11
## 13487 1 0 2020-01-11
## 13488 21 0 2020-01-11
## 13489 55 0 2020-01-11
## 13490 31 4 2020-01-11
## 13491 403 14 2020-01-11
## 13492 8 0 2020-01-11
## 13493 3 0 2020-01-11
## 13494 12 0 2020-01-11
## 13495 2 0 2020-01-11
## 13496 64 1 2020-01-11
## 13497 0 0 2020-01-11
## 13498 6 0 2020-01-11
## 13499 12 0 2020-01-11
## 13500 0 0 2020-01-11
## 13501 106 4 2020-01-11
## 13502 4 0 2020-01-11
## 13503 139 1 2020-01-11
## 13504 0 0 2020-01-11
## 13505 111 2 2020-01-11
## 13506 0 0 2020-01-11
## 13507 5 0 2020-01-11
## 13508 87 7 2020-01-11
## 13509 44 3 2020-01-11
## 13510 12 2 2020-01-11
## 13511 10 2 2020-01-11
## 13512 41 2 2020-01-11
## 13513 16 5 2020-01-11
## 13514 0 0 2020-01-11
## 13515 101 1 2020-01-11
## 13516 0 0 2020-01-11
## 13517 0 0 2020-01-11
## 13518 11 0 2020-01-11
## 13519 11 0 2020-01-11
## 13520 4 1 2020-01-11
## 13521 59 7 2020-01-11
## 13522 106 13 2020-01-11
## 13523 5 0 2020-01-11
## 13524 16 1 2020-01-11
## 13525 0 1 2020-01-11
## 13526 5 1 2020-01-11
## 13527 6 0 2020-01-11
## 13528 76 18 2020-01-11
## 13529 24 8 2020-01-11
## 13530 39 4 2020-01-11
## 13531 7 3 2020-01-11
## 13532 1 0 2020-01-11
## 13533 58 0 2020-01-11
## 13534 0 0 2020-01-11
## 13535 9 3 2020-01-11
## 13536 7 1 2020-01-11
## 13537 2 0 2020-01-11
## 13538 5 1 2020-01-11
## 13539 12 2 2020-01-11
## 13540 17 1 2020-01-11
## 13541 67 2 2020-01-11
## 13542 22 1 2020-01-11
## 13543 7 0 2020-01-11
## 13544 2 0 2020-01-11
## 13545 96 4 2020-01-11
## 13546 70 0 2020-01-11
## 13547 6 1 2020-01-11
## 13548 6 0 2020-01-11
## 13549 0 0 2020-01-11
## 13550 0 0 2020-01-11
## 13551 6 0 2020-01-11
## 13552 214 138 2020-01-11
## 13553 20 9 2020-01-11
## 13554 10 3 2020-01-11
## 13555 24 3 2020-01-11
## 13556 4 0 2020-01-11
## 13557 0 0 2020-01-11
## 13558 46 2 2020-01-11
## 13559 30 0 2020-01-11
## 13560 5 0 2020-01-11
## 13561 0 0 2020-01-11
## 13562 59 5 2020-01-11
## 13563 61 0 2020-01-11
## 13564 0 0 2020-01-11
## 13565 4 0 2020-01-11
## 13566 5 0 2020-01-11
## 13567 1 0 2020-01-11
## 13568 0 0 2020-01-11
## 13569 13 5 2020-01-11
## 13570 47 1 2020-01-11
## 13571 14 0 2020-01-11
## 13572 0 0 2020-01-11
## 13573 74 5 2020-01-11
## 13574 5 0 2020-01-11
## 13575 0 0 2020-01-11
## 13576 0 0 2020-01-11
## 13577 13 0 2020-01-11
## 13578 5 2 2020-01-11
## 13579 18 0 2020-01-11
## 13580 6 0 2020-01-11
## 13581 0 0 2020-01-11
## 13582 5 0 2020-01-11
## 13583 11 0 2020-01-11
## 13584 13 0 2020-01-11
## 13585 84 13 2020-01-11
## 13586 13 0 2020-01-11
## 13587 7 0 2020-01-11
## 13588 17 0 2020-01-11
## 13589 14 0 2020-01-11
## 13590 16 0 2020-01-11
## 13591 26 0 2020-01-11
## 13592 3 0 2020-01-11
## 13593 53 2 2020-01-11
## 13594 21 1 2020-01-11
## 13595 3 1 2020-01-11
## 13596 6 0 2020-01-11
## 13597 3 0 2020-01-11
## 13598 80 5 2020-01-11
## 13599 42 33 2020-01-11
## 13600 18 1 2020-01-11
## 13601 36 0 2020-01-11
## 13602 0 0 2020-01-11
## 13603 12 1 2020-01-11
## 13604 161 5 2020-01-11
## 13605 13 0 2020-01-11
## 13606 0 0 2020-01-11
## 13607 85 9 2020-01-11
## 13608 64 3 2020-01-11
## 13609 0 0 2020-01-11
## 13610 7 0 2020-01-11
## 13611 100 1 2020-01-11
## 13612 20 0 2020-01-11
## 13613 12 0 2020-01-11
## 13614 0 0 2020-01-11
## 13615 53 5 2020-01-11
## 13616 9 0 2020-01-11
## 13617 38 7 2020-01-11
## 13618 14 1 2020-01-11
## 13619 3 0 2020-01-11
## 13620 5 1 2020-01-11
## 13621 39 3 2020-01-11
## 13622 3 0 2020-01-11
## 13623 42 1 2020-01-11
## 13624 8 0 2020-01-11
## 13625 1 0 2020-01-11
## 13626 2 0 2020-01-11
## 13627 267 27 2020-01-11
## 13628 4 0 2020-01-11
## 13629 3 2 2020-01-11
## 13630 1 0 2020-01-11
## 13631 32 1 2020-01-11
## 13632 5 0 2020-01-11
## 13633 6 0 2020-01-11
## 13634 9 0 2020-01-11
## 13635 13 1 2020-01-11
## 13636 1 0 2020-01-11
## 13637 30 4 2020-01-11
## 13638 9 0 2020-01-11
## 13639 0 0 2020-01-11
## 13640 51 3 2020-01-11
## 13641 0 0 2020-01-11
## 13642 37 4 2020-01-11
## 13643 15 1 2020-01-11
## 13644 13 0 2020-01-11
## 13645 12 3 2020-01-11
## 13646 16 1 2020-01-11
## 13647 0 0 2020-01-11
## 13648 0 0 2020-01-11
## 13649 3 0 2020-01-11
## 13650 113 1 2020-01-11
## 13651 9 0 2020-01-11
## 13652 41 6 2020-01-11
## 13653 0 0 2020-01-11
## 13654 9 0 2020-01-11
## 13655 37 6 2020-01-11
## 13656 0 0 2020-01-11
## 13657 0 0 2020-01-11
## 13658 27 4 2020-01-11
## 13659 184 63 2020-01-11
## 13660 6 0 2020-01-11
## 13661 16 1 2020-01-11
## 13662 4 0 2020-01-11
## 13663 2 1 2020-01-11
## 13664 0 0 2020-01-11
## 13665 11 0 2020-01-11
## 13666 0 0 2020-01-11
## 13667 16 2 2020-01-11
## 13668 0 0 2020-01-11
## 13669 0 0 2020-01-11
## 13670 6 0 2020-01-11
## 13671 4 0 2020-01-11
## 13672 26 0 2020-01-11
## 13673 9 0 2020-01-11
## 13674 91 6 2020-01-11
## 13675 0 0 2020-01-11
## 13676 14 0 2020-01-11
## 13677 0 0 2020-01-11
## 13678 0 0 2020-01-11
## 13679 20 3 2020-01-11
## 13680 14 2 2020-01-11
## 13681 21 3 2020-01-11
## 13682 7 0 2020-01-11
## 13683 13 3 2020-01-11
## 13684 3 0 2020-01-11
## 13685 57 3 2020-01-11
## 13686 7 1 2020-01-11
## 13687 5 0 2020-01-11
## 13688 0 0 2020-01-11
## 13689 58 9 2020-01-11
## 13690 11 4 2020-01-11
## 13691 3 1 2020-01-11
## 13692 0 0 2020-01-11
## 13693 16 1 2020-01-11
## 13694 42 4 2020-01-11
## 13695 19 1 2020-01-11
## 13696 14 0 2020-01-11
## 13697 3 0 2020-01-11
## 13698 1 0 2020-01-11
## 13699 0 0 2020-01-11
## 13700 32 4 2020-01-11
## 13701 7 1 2020-01-11
## 13702 10 0 2020-01-11
## 13703 84 31 2020-01-11
## 13704 3 0 2020-01-11
## 13705 0 0 2020-01-11
## 13706 2 0 2020-01-11
## 13707 1 0 2020-01-11
## 13708 3 1 2020-01-11
## 13709 33 2 2020-01-11
## 13710 51 1 2020-01-11
## 13711 99 39 2020-01-11
## 13712 108 8 2020-01-11
## 13713 3 1 2020-01-11
## 13714 2 0 2020-01-11
## 13715 39 6 2020-01-11
## 13716 25 6 2020-01-11
## 13717 0 0 2020-01-11
## 13718 13 0 2020-01-11
## 13719 7 1 2020-01-11
## 13720 0 0 2020-01-11
## 13721 8 0 2020-01-11
## 13722 18 0 2020-01-11
## 13723 39 2 2020-01-11
## 13724 2 1 2020-01-11
## 13725 24 6 2020-01-11
## 13726 85 7 2020-01-11
## 13727 0 0 2020-01-11
## 13728 6 0 2020-01-11
## 13729 2 0 2020-01-11
## 13730 62 2 2020-01-11
## 13731 2 0 2020-01-11
## 13732 7 1 2020-01-11
## 13733 34 1 2020-01-11
## 13734 1 0 2020-01-11
## 13735 5 0 2020-01-11
## 13736 10 0 2020-01-11
## 13737 44 3 2020-01-11
## 13738 69 0 2020-01-11
## 13739 4 0 2020-01-11
## 13740 13 0 2020-01-11
## 13741 31 3 2020-01-11
## 13742 4 0 2020-01-11
## 13743 19 1 2020-01-11
## 13744 38 1 2020-01-11
## 13745 3 0 2020-01-11
## 13746 7 0 2020-01-11
## 13747 9 0 2020-01-11
## 13748 26 0 2020-01-11
## 13749 35 1 2020-01-11
## 13750 35 1 2020-01-11
## 13751 6 0 2020-01-11
## 13752 4 0 2020-01-11
## 13753 8 0 2020-01-11
## 13754 10 0 2020-01-11
## 13755 19 4 2020-01-11
## 13756 18 3 2020-01-11
## 13757 0 0 2020-01-11
## 13758 6 1 2020-01-11
## 13759 4 0 2020-01-11
## 13760 0 0 2020-01-11
## 13761 129 1 2020-01-11
## 13762 0 0 2020-01-11
## 13763 0 0 2020-01-11
## 13764 5 0 2020-01-11
## 13765 0 0 2020-01-11
## 13766 0 0 2020-01-11
## 13767 8 0 2020-01-11
## 13768 20 2 2020-01-11
## 13769 0 0 2020-01-11
## 13770 2 1 2020-01-11
## 13771 287 30 2020-01-11
## 13772 19 4 2020-01-11
## 13773 10 0 2020-01-11
## 13774 80 1 2020-01-11
## 13775 17 0 2020-01-11
## 13776 1 0 2020-01-11
## 13777 4 0 2020-01-11
## 13778 4 0 2020-01-11
## 13779 0 0 2020-01-11
## 13780 4 0 2020-01-11
## 13781 6 0 2020-01-11
## 13782 12 0 2020-01-11
## 13783 145 9 2020-01-11
## 13784 0 0 2020-01-11
## 13785 4 0 2020-01-11
## 13786 1 0 2020-01-11
## 13787 38 4 2020-01-11
## 13788 2 0 2020-01-11
## 13789 27 3 2020-01-11
## 13790 13 3 2020-01-11
## 13791 163 12 2020-01-11
## 13792 0 0 2020-01-11
## 13793 0 0 2020-01-11
## 13794 56 4 2020-01-11
## 13795 11 0 2020-01-11
## 13796 22 0 2020-01-11
## 13797 11 2 2020-01-11
## 13798 58 3 2020-01-11
## 13799 10 0 2020-01-11
## 13800 1 0 2020-01-11
## 13801 0 0 2020-01-11
## 13802 0 0 2020-01-11
## 13803 0 0 2020-01-11
## 13804 0 0 2020-01-11
## 13805 8 3 2020-01-11
## 13806 1 1 2020-01-11
## 13807 110 7 2020-01-11
## 13808 29 5 2020-01-11
## 13809 21 0 2020-01-11
## 13810 6 0 2020-01-11
## 13811 11 3 2020-01-11
## 13812 3 1 2020-01-11
## 13813 120 9 2020-01-11
## 13814 38 0 2020-01-11
## 13815 0 0 2020-01-11
## 13816 2 0 2020-01-11
## 13817 10 0 2020-01-11
## 13818 10 3 2020-01-11
## 13819 14 1 2020-01-11
## 13820 157 11 2020-01-11
## 13821 0 0 2020-01-11
## 13822 4 1 2020-01-11
## 13823 0 0 2020-01-11
## 13824 0 0 2020-01-11
## 13825 16 0 2020-01-11
## 13826 23 3 2020-01-11
## 13827 6 0 2020-01-11
## 13828 2 1 2020-01-11
## 13829 50 1 2020-01-11
## 13830 12 0 2020-01-11
## 13831 0 0 2020-01-11
## 13832 220 6 2020-01-11
## 13833 7 0 2020-01-11
## 13834 10 1 2020-01-11
## 13835 17 7 2020-01-11
## 13836 14 2 2020-01-11
## 13837 21 0 2020-01-11
## 13838 5 0 2020-01-11
## 13839 3 0 2020-01-11
## 13840 0 0 2020-01-11
## 13841 47 8 2020-01-11
## 13842 0 0 2020-01-11
## 13843 383 4 2020-01-11
## 13844 4 0 2020-01-11
## 13845 63 2 2020-01-11
## 13846 9 1 2020-01-11
## 13847 14 1 2020-01-11
## 13848 3 0 2020-01-11
## 13849 9 0 2020-01-11
## 13850 12 2 2020-01-11
## 13851 0 0 2020-01-11
## 13852 477 53 2020-01-11
## 13853 26 0 2020-01-11
## 13854 10 0 2020-01-11
## 13855 66 2 2020-01-11
## 13856 5 2 2020-01-11
## 13857 14 0 2020-01-11
## 13858 0 0 2020-01-12
## 13859 12 1 2020-01-12
## 13860 3 0 2020-01-12
## 13861 6 0 2020-01-12
## 13862 91 5 2020-01-12
## 13863 9 3 2020-01-12
## 13864 52 11 2020-01-12
## 13865 1 0 2020-01-12
## 13866 18 0 2020-01-12
## 13867 61 1 2020-01-12
## 13868 0 0 2020-01-12
## 13869 46 1 2020-01-12
## 13870 54 6 2020-01-12
## 13871 3 0 2020-01-12
## 13872 2 0 2020-01-12
## 13873 51 0 2020-01-12
## 13874 11 0 2020-01-12
## 13875 9 0 2020-01-12
## 13876 0 0 2020-01-12
## 13877 10 2 2020-01-12
## 13878 26 2 2020-01-12
## 13879 123 10 2020-01-12
## 13880 30 1 2020-01-12
## 13881 4 0 2020-01-12
## 13882 10 0 2020-01-12
## 13883 0 1 2020-01-12
## 13884 30 3 2020-01-12
## 13885 123 8 2020-01-12
## 13886 1028 990 2020-01-12
## 13887 13 2 2020-01-12
## 13888 0 0 2020-01-12
## 13889 0 0 2020-01-12
## 13890 34 1 2020-01-12
## 13891 9 0 2020-01-12
## 13892 83 3 2020-01-12
## 13893 0 0 2020-01-12
## 13894 0 0 2020-01-12
## 13895 0 0 2020-01-12
## 13896 18 0 2020-01-12
## 13897 9 1 2020-01-12
## 13898 5 0 2020-01-12
## 13899 220 4 2020-01-12
## 13900 0 0 2020-01-12
## 13901 17 2 2020-01-12
## 13902 2 0 2020-01-12
## 13903 24 1 2020-01-12
## 13904 16 2 2020-01-12
## 13905 10 1 2020-01-12
## 13906 2 0 2020-01-12
## 13907 15 1 2020-01-12
## 13908 15 1 2020-01-12
## 13909 0 0 2020-01-12
## 13910 6 5 2020-01-12
## 13911 1 0 2020-01-12
## 13912 140 16 2020-01-12
## 13913 0 0 2020-01-12
## 13914 156 15 2020-01-12
## 13915 7 0 2020-01-12
## 13916 79 1 2020-01-12
## 13917 54 4 2020-01-12
## 13918 3 1 2020-01-12
## 13919 45 1 2020-01-12
## 13920 158 10 2020-01-12
## 13921 43 0 2020-01-12
## 13922 199 4 2020-01-12
## 13923 4 0 2020-01-12
## 13924 11 2 2020-01-12
## 13925 4 0 2020-01-12
## 13926 10 2 2020-01-12
## 13927 4 0 2020-01-12
## 13928 8 0 2020-01-12
## 13929 17 1 2020-01-12
## 13930 47 1 2020-01-12
## 13931 18 1 2020-01-12
## 13932 160 9 2020-01-12
## 13933 29 2 2020-01-12
## 13934 15 0 2020-01-12
## 13935 0 0 2020-01-12
## 13936 4 1 2020-01-12
## 13937 403 9 2020-01-12
## 13938 30 2 2020-01-12
## 13939 18 4 2020-01-12
## 13940 0 0 2020-01-12
## 13941 7 0 2020-01-12
## 13942 54 3 2020-01-12
## 13943 24 2 2020-01-12
## 13944 180 15 2020-01-12
## 13945 9 3 2020-01-12
## 13946 118 6 2020-01-12
## 13947 7 3 2020-01-12
## 13948 6 0 2020-01-12
## 13949 7 4 2020-01-12
## 13950 5 2 2020-01-12
## 13951 77 8 2020-01-12
## 13952 4 0 2020-01-12
## 13953 0 0 2020-01-12
## 13954 14 4 2020-01-12
## 13955 95 7 2020-01-12
## 13956 6 1 2020-01-12
## 13957 0 0 2020-01-12
## 13958 9 1 2020-01-12
## 13959 12 0 2020-01-12
## 13960 22 0 2020-01-12
## 13961 0 0 2020-01-12
## 13962 14 0 2020-01-12
## 13963 41 5 2020-01-12
## 13964 3 0 2020-01-12
## 13965 1 0 2020-01-12
## 13966 16 0 2020-01-12
## 13967 4 1 2020-01-12
## 13968 15 4 2020-01-12
## 13969 14 0 2020-01-12
## 13970 2 0 2020-01-12
## 13971 38 5 2020-01-12
## 13972 122 5 2020-01-12
## 13973 12 0 2020-01-12
## 13974 3 2 2020-01-12
## 13975 0 0 2020-01-12
## 13976 32 2 2020-01-12
## 13977 1 4 2020-01-12
## 13978 9 1 2020-01-12
## 13979 0 1 2020-01-12
## 13980 13 1 2020-01-12
## 13981 17 1 2020-01-12
## 13982 43 4 2020-01-12
## 13983 6 0 2020-01-12
## 13984 0 0 2020-01-12
## 13985 0 0 2020-01-12
## 13986 7 1 2020-01-12
## 13987 72 3 2020-01-12
## 13988 34 4 2020-01-12
## 13989 278 49 2020-01-12
## 13990 0 0 2020-01-12
## 13991 72 0 2020-01-12
## 13992 0 0 2020-01-12
## 13993 25 4 2020-01-12
## 13994 0 0 2020-01-12
## 13995 7 0 2020-01-12
## 13996 28 3 2020-01-12
## 13997 13 1 2020-01-12
## 13998 62 21 2020-01-12
## 13999 22 1 2020-01-12
## 14000 32 5 2020-01-12
## 14001 25 1 2020-01-12
## 14002 0 0 2020-01-12
## 14003 155 12 2020-01-12
## 14004 10 0 2020-01-12
## 14005 14 2 2020-01-12
## 14006 0 0 2020-01-12
## 14007 15 1 2020-01-12
## 14008 84 5 2020-01-12
## 14009 0 0 2020-01-12
## 14010 62 1 2020-01-12
## 14011 10 1 2020-01-12
## 14012 11 1 2020-01-12
## 14013 0 0 2020-01-12
## 14014 4 0 2020-01-12
## 14015 0 0 2020-01-12
## 14016 2 0 2020-01-12
## 14017 25 1 2020-01-12
## 14018 4 0 2020-01-12
## 14019 4 1 2020-01-12
## 14020 5 0 2020-01-12
## 14021 9 0 2020-01-12
## 14022 6 0 2020-01-12
## 14023 9 2 2020-01-12
## 14024 0 0 2020-01-12
## 14025 5 0 2020-01-12
## 14026 0 0 2020-01-12
## 14027 65 5 2020-01-12
## 14028 238 14 2020-01-12
## 14029 13 1 2020-01-12
## 14030 230 18 2020-01-12
## 14031 0 0 2020-01-12
## 14032 5 0 2020-01-12
## 14033 0 0 2020-01-12
## 14034 66 10 2020-01-12
## 14035 98 8 2020-01-12
## 14036 0 0 2020-01-12
## 14037 714 65 2020-01-12
## 14038 4 1 2020-01-12
## 14039 4 0 2020-01-12
## 14040 25 0 2020-01-12
## 14041 242 5 2020-01-12
## 14042 0 0 2020-01-12
## 14043 60 6 2020-01-12
## 14044 12 1 2020-01-12
## 14045 25 0 2020-01-12
## 14046 12 0 2020-01-12
## 14047 18 1 2020-01-12
## 14048 46 3 2020-01-12
## 14049 60 4 2020-01-12
## 14050 0 0 2020-01-12
## 14051 7 0 2020-01-12
## 14052 39 2 2020-01-12
## 14053 107 3 2020-01-12
## 14054 146 4 2020-01-12
## 14055 46 3 2020-01-12
## 14056 18 1 2020-01-12
## 14057 25 0 2020-01-12
## 14058 0 0 2020-01-12
## 14059 0 0 2020-01-12
## 14060 160 23 2020-01-12
## 14061 30 3 2020-01-12
## 14062 16 0 2020-01-12
## 14063 0 0 2020-01-12
## 14064 69 0 2020-01-12
## 14065 0 0 2020-01-12
## 14066 44 1 2020-01-12
## 14067 42 0 2020-01-12
## 14068 0 0 2020-01-12
## 14069 10 0 2020-01-12
## 14070 5 1 2020-01-12
## 14071 0 0 2020-01-12
## 14072 1 0 2020-01-12
## 14073 7 0 2020-01-12
## 14074 18 0 2020-01-12
## 14075 6 0 2020-01-12
## 14076 5 0 2020-01-12
## 14077 13 4 2020-01-12
## 14078 10 1 2020-01-12
## 14079 0 0 2020-01-12
## 14080 0 0 2020-01-12
## 14081 6 2 2020-01-12
## 14082 2 1 2020-01-12
## 14083 3 0 2020-01-12
## 14084 33 2 2020-01-12
## 14085 0 0 2020-01-12
## 14086 9 0 2020-01-12
## 14087 35 2 2020-01-12
## 14088 31 0 2020-01-12
## 14089 19 3 2020-01-12
## 14090 0 0 2020-01-12
## 14091 16 0 2020-01-12
## 14092 0 0 2020-01-12
## 14093 5 1 2020-01-12
## 14094 67 5 2020-01-12
## 14095 62 9 2020-01-12
## 14096 29 1 2020-01-12
## 14097 32 4 2020-01-12
## 14098 3 0 2020-01-12
## 14099 67 8 2020-01-12
## 14100 2 0 2020-01-12
## 14101 2599 34 2020-01-12
## 14102 4 2 2020-01-12
## 14103 6 1 2020-01-12
## 14104 0 0 2020-01-12
## 14105 56 6 2020-01-12
## 14106 18 0 2020-01-12
## 14107 14 0 2020-01-12
## 14108 2 0 2020-01-12
## 14109 37 3 2020-01-12
## 14110 238 45 2020-01-12
## 14111 1033 63 2020-01-12
## 14112 32 2 2020-01-12
## 14113 5 0 2020-01-12
## 14114 11 0 2020-01-12
## 14115 9 6 2020-01-12
## 14116 30 2 2020-01-12
## 14117 125 7 2020-01-12
## 14118 0 0 2020-01-12
## 14119 60 5 2020-01-12
## 14120 7 0 2020-01-12
## 14121 2 0 2020-01-12
## 14122 7 0 2020-01-12
## 14123 3 1 2020-01-12
## 14124 12 1 2020-01-12
## 14125 23 0 2020-01-12
## 14126 28 2 2020-01-12
## 14127 15 1 2020-01-12
## 14128 5 0 2020-01-12
## 14129 7 0 2020-01-12
## 14130 19 0 2020-01-12
## 14131 11 1 2020-01-12
## 14132 20 1 2020-01-12
## 14133 68 2 2020-01-12
## 14134 17 1 2020-01-12
## 14135 171 6 2020-01-12
## 14136 0 0 2020-01-12
## 14137 33 6 2020-01-12
## 14138 11 3 2020-01-12
## 14139 10 3 2020-01-12
## 14140 34 1 2020-01-12
## 14141 4 0 2020-01-12
## 14142 223 13 2020-01-12
## 14143 9 1 2020-01-12
## 14144 3 0 2020-01-12
## 14145 26 0 2020-01-12
## 14146 25 1 2020-01-12
## 14147 15 0 2020-01-12
## 14148 31 3 2020-01-12
## 14149 48 7 2020-01-12
## 14150 5 0 2020-01-12
## 14151 11 1 2020-01-12
## 14152 42 2 2020-01-12
## 14153 2 0 2020-01-12
## 14154 97 8 2020-01-12
## 14155 9 1 2020-01-12
## 14156 48 7 2020-01-12
## 14157 311 10 2020-01-12
## 14158 29 1 2020-01-12
## 14159 12 0 2020-01-12
## 14160 17 3 2020-01-12
## 14161 19 2 2020-01-12
## 14162 12 2 2020-01-12
## 14163 50 2 2020-01-12
## 14164 22 2 2020-01-12
## 14165 3 0 2020-01-12
## 14166 10 7 2020-01-12
## 14167 5 1 2020-01-12
## 14168 1 1 2020-01-12
## 14169 7 0 2020-01-12
## 14170 14 2 2020-01-12
## 14171 5 1 2020-01-12
## 14172 43 6 2020-01-12
## 14173 61 1 2020-01-12
## 14174 6 6 2020-01-12
## 14175 1 0 2020-01-12
## 14176 66 3 2020-01-12
## 14177 11 0 2020-01-12
## 14178 54 5 2020-01-12
## 14179 45 3 2020-01-12
## 14180 9 2 2020-01-12
## 14181 2 0 2020-01-12
## 14182 15 1 2020-01-12
## 14183 3 0 2020-01-12
## 14184 19 0 2020-01-12
## 14185 7 0 2020-01-12
## 14186 3 2 2020-01-12
## 14187 0 0 2020-01-12
## 14188 8 0 2020-01-12
## 14189 6 0 2020-01-12
## 14190 38 0 2020-01-12
## 14191 5 1 2020-01-12
## 14192 34 1 2020-01-12
## 14193 1 0 2020-01-12
## 14194 19 0 2020-01-12
## 14195 0 0 2020-01-12
## 14196 2 0 2020-01-12
## 14197 87 2 2020-01-12
## 14198 5 0 2020-01-12
## 14199 36 1 2020-01-12
## 14200 24 3 2020-01-12
## 14201 8 0 2020-01-12
## 14202 8 0 2020-01-12
## 14203 410 12 2020-01-12
## 14204 0 0 2020-01-12
## 14205 4 2 2020-01-12
## 14206 0 0 2020-01-12
## 14207 78 1 2020-01-12
## 14208 43 0 2020-01-12
## 14209 11 1 2020-01-12
## 14210 2 0 2020-01-12
## 14211 36 6 2020-01-12
## 14212 6 0 2020-01-12
## 14213 0 0 2020-01-12
## 14214 1 0 2020-01-12
## 14215 19 0 2020-01-12
## 14216 6 0 2020-01-12
## 14217 17 0 2020-01-12
## 14218 1 0 2020-01-12
## 14219 40 1 2020-01-12
## 14220 1 0 2020-01-12
## 14221 46 0 2020-01-12
## 14222 117 29 2020-01-12
## 14223 1 0 2020-01-12
## 14224 94 2 2020-01-12
## 14225 10 0 2020-01-12
## 14226 0 0 2020-01-12
## 14227 69 1 2020-01-12
## 14228 0 0 2020-01-12
## 14229 0 0 2020-01-12
## 14230 17 0 2020-01-12
## 14231 2 0 2020-01-12
## 14232 0 0 2020-01-12
## 14233 49 1 2020-01-12
## 14234 0 0 2020-01-12
## 14235 180 3 2020-01-12
## 14236 0 0 2020-01-12
## 14237 19 0 2020-01-12
## 14238 1 0 2020-01-12
## 14239 5 0 2020-01-12
## 14240 0 0 2020-01-12
## 14241 6 0 2020-01-12
## 14242 59 4 2020-01-12
## 14243 9 2 2020-01-12
## 14244 7 0 2020-01-12
## 14245 9 0 2020-01-12
## 14246 52 1 2020-01-12
## 14247 5 4 2020-01-12
## 14248 45 0 2020-01-12
## 14249 3 1 2020-01-12
## 14250 23 1 2020-01-12
## 14251 8 4 2020-01-12
## 14252 2 0 2020-01-12
## 14253 6 4 2020-01-12
## 14254 6 1 2020-01-12
## 14255 3 0 2020-01-12
## 14256 10 0 2020-01-12
## 14257 4 3 2020-01-11
## 14258 13 1 2020-01-11
## 14259 0 0 2020-01-11
## 14260 80 1 2020-01-11
## 14261 0 0 2020-01-11
## 14262 19 5 2020-01-11
## 14263 15 2 2020-01-11
## 14264 8 0 2020-01-11
## 14265 3 0 2020-01-11
## 14266 107 2 2020-01-11
## 14267 3 1 2020-01-11
## 14268 21 1 2020-01-11
## 14269 35 1 2020-01-11
## 14270 0 1 2020-01-11
## 14271 89 1 2020-01-11
## 14272 118 3 2020-01-11
## 14273 62 1 2020-01-11
## 14274 22 3 2020-01-11
## 14275 11 4 2020-01-11
## 14276 162 4 2020-01-11
## 14277 5 3 2020-01-11
## 14278 65 9 2020-01-11
## 14279 73 1 2020-01-11
## 14280 6 0 2020-01-11
## 14281 0 0 2020-01-11
## 14282 7 1 2020-01-11
## 14283 35 3 2020-01-11
## 14284 0 0 2020-01-11
## 14285 70 0 2020-01-11
## [ reached 'max' / getOption("max.print") -- omitted 154060 rows ]
# look at how many different newspaper we have in the dataset
unique(docvars(toks_news)$username)
## [1] "DailyMirror" "thetimes" "TheSun" "DailyMailUK"
## [5] "guardian" "Telegraph" "EveningStandard" "MetroUK"
# recreate a document-feature matrix but instead of grouping it by date, we group it by 'username' (aka newspapers)
dfm_news_lsd <- dfm(toks_news_lsd) %>%
dfm_group(groups = username)
# convert it to a dataframe so it's easier to use
tidy_dfm_news_lsd <- dfm_news_lsd %>%
convert(to = "data.frame") %>%
rename("newspaper" = doc_id) %>% # when converting to data.frame, R called our grouping variable 'doc_id'. We rename it 'newspaper' instead.
mutate(sentiment = positive - negative) # create variable for overall sentiment
# plot by newspaper
tidy_dfm_news_lsd %>%
ggplot() + # when we enter ggplot environment we need to use '+' not '%>%',
geom_point(aes(x=reorder(newspaper, -sentiment), y=sentiment)) + # reordering newspaper variable so it is displayed from most negative to most positive
coord_flip() + # pivot plot by 90 degrees
xlab("Newspapers") + # label x axis
ylab("Overall tweet sentiment (negative to positive)") + # label y axis
theme_minimal() # pretty graphic theme
Difficult to interpret… Tabloids (The Daily Mirror, the Sun and the
Daily Mail) seems to write overall more negative tweets than more
traditional newspapers. This is especially true for The Daily Mirror.
Overall it may be interesting to note that the more left-leaning papers
(the Daily Mirror and the Guardian) also appear the most negative within
their respective genre (tabloids and non-tabloid newspapers).
Because many of you tried to analyse sentiment not just by newspaper but by newspaper and by date, I include code to do this.
# recreate a document-feature matrix but instead of grouping it by date, we group it by 'username' (aka newspapers)
dfm_news_lsd <- dfm(toks_news_lsd) %>%
dfm_group(groups = interaction(username, date)) # we group by interaction variable between newspaper and date
# convert it to a dataframe so it's easier to use
tidy_dfm_news_lsd <- dfm_news_lsd %>%
convert(to = "data.frame")
head(tidy_dfm_news_lsd) # inspect
## doc_id negative positive
## 1 DailyMailUK.2020-01-01 113 56
## 2 DailyMirror.2020-01-01 335 161
## 3 EveningStandard.2020-01-01 26 36
## 4 guardian.2020-01-01 99 85
## 5 MetroUK.2020-01-01 46 29
## 6 Telegraph.2020-01-01 74 42
# the interaction has batched together newspaper name and date (e.g. DailyMailUK.2020-01-01).
#We want to separate them into two distinct variables. We can do it using the command extract() and regex. It's easy because the separation is always a .
tidy_dfm_news_lsd <- tidy_dfm_news_lsd %>%
extract(doc_id, into = c("newspaper", "date"), regex = "([a-zA-Z]+)\\.(.+)") %>%
mutate(date = as.Date(date)) # clarify to R that this variable is a date
head(tidy_dfm_news_lsd) # inspect
## newspaper date negative positive
## 1 DailyMailUK 2020-01-01 113 56
## 2 DailyMirror 2020-01-01 335 161
## 3 EveningStandard 2020-01-01 26 36
## 4 guardian 2020-01-01 99 85
## 5 MetroUK 2020-01-01 46 29
## 6 Telegraph 2020-01-01 74 42
# nice! now we again have two distinct clean variables called 'newspaper' and 'date'.
tidy_dfm_news_lsd <- tidy_dfm_news_lsd %>%
mutate(sentiment = positive - negative) # recreate variable for overall sentiment
tidy_dfm_news_lsd %>%
ggplot(aes(x=date, y=sentiment)) +
geom_point(alpha=0.5) + # plot points
geom_smooth(method= loess, alpha=0.25) + # plot smooth line
facet_wrap(~newspaper) + # 'facetting' means multiplying the plots so that there is one plot for each member of the group (here, sentiment) that way you can easily compare trend across group.
xlab("date") + ylab("overall sentiment (negative to positive)") +
ggtitle("Tweet sentiment trend across 8 British newspapers") +
theme_minimal()
## `geom_smooth()` using formula = 'y ~ x'
trans_words <- c('trans', 'transgender', 'trans rights', 'trans rights activists', 'transphobic', 'terf', 'terfs', 'transphobia', 'transphobes', 'gender critical', 'LGBTQ', 'LGBTQ+')
#get total tweets per day (no missing dates so no date completion required)
totals_newspaper <- tidy_tweets %>%
mutate(obs=1) %>%
group_by(newspaper) %>%
summarise(sum_words = sum(obs))
#plot
tidy_tweets %>%
mutate(obs=1) %>%
filter(grepl(paste0(trans_words, collapse = "|"), word, ignore.case = T)) %>%
group_by(newspaper) %>%
summarise(sum_mwords = sum(obs)) %>%
full_join(totals_newspaper, word, by="newspaper") %>%
mutate(sum_mwords= ifelse(is.na(sum_mwords), 0, sum_mwords),
pcttranswords = sum_mwords/sum_words) %>%
ggplot(aes(x=reorder(newspaper, -pcttranswords), y=pcttranswords)) +
geom_point() +
xlab("newspaper") + ylab("% words referring to trans or terfs") +
coord_flip() +
theme_minimal()
The Sun looks like it discusses trans people and trans rights (or
transphobia) particularly often.
# I'm gonna create a dictionary with two categories (it could be only one but I'm feeling fancy), one for words referring to trans people, and one for words referring to transphobes/anti-trans rights
trans_dict <- dictionary(list(trans = c('trans', 'transgender', 'trans rights', 'trans rights activists', 'LGBTQ', 'LGBTQ+'),
terf = c('transphobic', 'terf', 'terfs', 'transphobia', 'transphobes', 'gender critical')))
# back to tokens object
dfm_dict_trans <- toks_news %>%
tokens_lookup(dictionary = trans_dict) %>% # look up the occurrence of my dictionaries
dfm() %>% # turn into dfm
dfm_group(groups = newspaper) %>% # group by newspaper
convert(to = "data.frame") %>% # convert it to a dataframe
rename("newspaper" = doc_id) %>% # rename variable
full_join(totals_newspaper, word, by="newspaper")
# # then just tweak the same code as before
# tidy_dfm_trans <- dfm_trans %>%
# dfm_group(groups = newspaper) %>% # we group by newspaper
# convert(to = "data.frame") %>% # convert it to a dataframe
# rename("newspaper" = doc_id) # rename variable
dfm_dict_trans <- dfm_dict_trans %>%
mutate(
sum_trans_words = ifelse(is.na(trans), 0, trans),
sum_terf_words = ifelse(is.na(terf), 0, terf),
pct_trans_words = sum_trans_words / sum_words,
pct_terf_words = sum_terf_words / sum_words
)
dfm_long <- dfm_dict_trans %>%
select(newspaper, pct_trans_words, pct_terf_words) %>%
pivot_longer(cols = c(pct_trans_words, pct_terf_words),
names_to = "category", values_to = "percentage")
# plot by newspaper
# dfm_dict_trans %>%
# ggplot() + # when we enter ggplot environment we need to use '+' not '%>%',
# geom_point(aes(x=reorder(newspaper, -sentiment), y=sentiment)) + # reordering newspaper variable so it is displayed from most negative to most positive
# coord_flip() + # pivot plot by 90 degrees
# xlab("Newspapers") + # label x axis
# ylab("Overall tweet sentiment (negative to positive)") + # label y axis
# theme_minimal() # pretty graphic theme
ggplot(dfm_long, aes(x = reorder(newspaper, -percentage), y = percentage, fill = category)) +
geom_bar(stat = "identity", position = "dodge") +
scale_fill_manual(values = c("blue", "red"), labels = c("TERF Words", "Trans Words")) +
xlab("Newspaper") + ylab("% of Words Referring to Trans or TERFs") +
scale_y_continuous(labels = scales::label_number()) +
coord_flip() +
theme_minimal()
#plot
tidy_tweets %>%
mutate(obs=1) %>%
filter(grepl(paste0(mordict, collapse = "|"), word, ignore.case = T)) %>%
group_by(date) %>%
summarise(sum_mwords = sum(obs)) %>%
full_join(totals, word, by="date") %>%
mutate(sum_mwords= ifelse(is.na(sum_mwords), 0, sum_mwords),
pctmwords = sum_mwords/sum_words) %>%
ggplot(aes(date, pctmwords)) +
geom_point(alpha=0.5) +
geom_smooth(method= loess, alpha=0.25) +
xlab("Date") + ylab("% mortality words")
## `geom_smooth()` using formula = 'y ~ x'
# data_dictionary_LSD2015_pos_neg <- data_dictionary_LSD2015[1:2]
# toks_news_lsd <- tokens_lookup(toks_news, dictionary = data_dictionary_LSD2015_pos_neg)
# recreate a document-feature matrix grouping it by newspapers
dfm_news_lsd_id <- dfm(toks_news_lsd) %>%
dfm_group(groups = newspaper)
# convert it to a dataframe so it's easier to use
tidy_dfm_news_lsd_id <- dfm_news_lsd_id %>%
convert(to = "data.frame") %>%
rename(newspaper = doc_id) %>%
mutate(sentiment_score = positive - negative)
head(tidy_dfm_news_lsd_id) # inspect
## newspaper negative positive sentiment_score
## 1 Daily Mail U.K. 20086 10705 -9381
## 2 Evening Standard 10951 9549 -1402
## 3 Metro 5987 4855 -1132
## 4 The Guardian 18922 11986 -6936
## 5 The Mirror 58137 24784 -33353
## 6 The Sun 26949 19741 -7208
tidy_dfm_news_lsd_id %>%
ggplot(aes(x = reorder(newspaper, -sentiment_score), y=sentiment_score)) +
geom_point(alpha=0.5) + # plot points
geom_smooth(method= loess, alpha=0.25) + # plot smooth line
xlab("Newspaper") + ylab("overall sentiment (negative to positive)") +
ggtitle("Tweet sentiment across 8 British newspapers") +
coord_flip() +
theme_minimal()
## `geom_smooth()` using formula = 'y ~ x'
4. Don’t forget to ‘knit’ to produce your final html output for the
exercise.